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

Linux [TFS 0.3.5] MySQL

Gelio

Lua PHP C++ programmer
Joined
Jun 13, 2008
Messages
61
Reaction score
4
Location
Poland, Lublin
Hello. I got a problem: when I type 'mysql' in sqlType my server is still using sqlite. At first to compile I used this command:
Code:
./autogen.sh && ./configure --enable-sqlite --enable-server-diag && make
After this server was still using sqlite, so I changed command to this:
Code:
./autogen.sh && ./configure --enable-mysql --enable-server-diag && make
It showed, that server will use mysql, not sqlite, but when I runned it, server was using sqlite. Anybody know how to fix it? I looked into source (configmanager.cpp) and I saw, that to use sqlType it need to has special parameter:
Code:
MULTI_SQL_DRIVERS
But I don't know how to set it.

Gelio
 
Back
Top