I looked through some of the other posts. I have not been able to get mysql to connect. Here is the source.
Code:
switch(SQL_MYSQL)
{
case SQL_MSSQL: if(!sql.connectMSSQL("LocalHost\\SQLExpress", "test_DB", "", "", &messages)) Exit(S+"Cannot connect to Server!"); break;
case SQL_SQLITE: if(!sql.connectSQLite("sqlite.db"))Exit("Unable to connect to Server!"); break;
case SQL_MYSQL: if(!sql.connectMySQL("localhost", "EE_Test", "blankedout", "blankedout", &messages))Exit("Unable to connect to MySql!"); break;
I have installed the 5.1 drivers of the ODBC drivers. I have tried pointing it to the odbc connection. I've tried inputting the ip directly. I can't seem to get it to work.
Fuzzy
Student|Westwood
Project V. Studios | Game Dev
(This post was last modified: 02-16-2013 08:26 AM by fuzzylr.)