install

来自「Ajax最流行书籍」· 代码 · 共 26 行

TXT
26
字号
INSTALL--------If you would like to use the Client Event System (NACLES)you should run the following SQL code in your database:CREATE TABLE `najax_events`(	`id`		BIGINT			UNSIGNED	NOT NULL	AUTO_INCREMENT,	`event`		VARCHAR(100)				NOT NULL,	`className`	VARCHAR(100)				NOT NULL,	`filter`	VARCHAR(100)				NULL,	`sender`	TEXT						NULL,	`data`		TEXT						NULL,	`time`		DOUBLE			UNSIGNED	NOT NULL,	`endTime`	DOUBLE			UNSIGNED	NOT NULL,	PRIMARY KEY(`id`),	INDEX(`event`, `className`, `filter`, `time`, `endTime`));If you're going to use another provider (not MySQL) please refer tothe README or INSTALL file included in it. Note, that some providersdo not require installation.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?