• 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!

About SQL file

Totl

Banned User
Joined
Oct 10, 2008
Messages
8
Reaction score
0
I used a SQL file in 8.22 server and i want to run that sql file to 8.4 server should to update it
and when i test it : [28/01/2009 12:53:31] SQLITE ERROR sqlite_exec: no such column: type
 
I used a SQL file in 8.22 server and i want to run that sql file to 8.4 server should to update it
and when i test it : [28/01/2009 12:53:31] SQLITE ERROR sqlite_exec: no such column: type

are you using sql lite or mysql if u use mysql change in config.lua
in some server u have to put this like:
Code:
	mysqlType = "mysql"
	mysqlHost = ""
	mysqlUser = ""
	mysqlPass = ""
	mysqlDatabase = ""
	mysqlPort = 3306
	mysqlFile = "forgottenserver.s3db"

and in some
Code:
	sqlType = "mysql"
	sqlHost = ""
	sqlUser = ""
	sqlPass = ""
	sqlDatabase = ""
	sqlPort = 3306
	sqlFile = "forgottenserver.s3db"
 
Back
Top