• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[SQL] Sql error just one small error. Rep

Kokko

New Member
Joined
May 1, 2009
Messages
67
Reaction score
2
I used a sqlite database because i had account manager and now im setting up a homepage.

Can someone explain this error and how to fix it


CREATE TABLE "server_config"(

"config"VARCHAR( 35 ) NOT NULL DEFAULT '',
"value"INTEGER NOT NULL ,
UNIQUE (
"config"
)
);



MySQL sa:

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '"server_config" (
"config" VARCHAR(35) NOT NULL DEFAULT '',
"value" INTEGER ' at line 1
 
Code:
CREATE TABLE `server_config`
(
	`config` VARCHAR(35) NOT NULL DEFAULT '',
	`value` INT NOT NULL,
	UNIQUE (`config`)
) ENGINE = InnoDB;
 
Back
Top