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

help me plx

nielstipa

New Member
Joined
Feb 5, 2010
Messages
22
Reaction score
0
Please I have a Styller Yourots 0.6.5 (8.54) that uses SQLlite then I got a website that is using a mysql database, how can I fix it? What should I do to make both in the same database or working together?

Please help :)
 
really thanks for your help, I have another quest, How should I fill this config.lua to make my server work with my database in mysql.
sqlType = "sqlite"
sqlHost = "localhost"
sqlPort = 3306
sqlUser = "root"
sqlPass = ""
sqlDatabase = "Styller"
sqlFile = "Styller.s3db" <<<what should I put here?
 
sqlType = "mysql" -- changed
sqlHost = "localhost" -- dont change
sqlPort = 3306 -- dont change
sqlUser = "root" -- dont change
sqlPass = "" -- set your phpmyadmin password
sqlDatabase = "Styller" -- name of the database in phpmyadmin(sql)
sqlFile = "Styller.s3db" -- used with sqlite, not needed for mysql
 
Back
Top