Can you convert it to Mysql Syntax. Thank you in advance.
How to generate Scheduler tables in the MySQL database
Answers approved by DevExpress Support
Hello,
Here are scripts to create tables for appointments and resources in MySQL:
SQLCREATE TABLE `appointments` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`Type` int(11) DEFAULT NULL,
`StartDate` datetime DEFAULT NULL,
`EndDate` datetime DEFAULT NULL,
`AllDay` tinyint(1) DEFAULT NULL,
`Subject` varchar(2000) DEFAULT NULL,
`Location` varchar(2000) DEFAULT NULL,
`Description` varchar(2000) DEFAULT NULL,
`Status` int(11) DEFAULT NULL,
`Label` int(11) DEFAULT NULL,
`ResourceId` int(11) DEFAULT NULL,
`ResourceIds` varchar(2000) DEFAULT NULL,
`ReminderInfo` varchar(2000) DEFAULT NULL,
`RecurrenceInfo` varchar(2000) DEFAULT NULL,
PRIMARY KEY (`ID`),
UNIQUE KEY `ID_UNIQUE` (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
SQLCREATE TABLE `resources` (
`ID` int(11) NOT NULL,
`Description` varchar(2000) DEFAULT NULL,
`Color` int(11) DEFAULT NULL,
PRIMARY KEY (`ID`),
UNIQUE KEY `ID_UNIQUE` (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Should you have further questions, let me know.
Hello John,
I see that you created the How to generate Scheduler tables in MySQL database C# thread with your question. We will address it as soon as possible.
i want to use mysql database too. a simple guide to create mysql db and connect it. Can someone share it?
Hi,
To avoid mixing multiple questions in one thread, I've created a separate ticket on your behalf: How to create a MySQL database and connect to it. I will address it shortly.