Displaying 1 result from an estimated 1 matches for "asd2sdf3".
2006 Sep 15
1
Problem with MySQL
...there,
I tried to setup a passwddb with mysql, but it wont connect to my
database, even if I patch the driver-mysql.c
Here a test program I wrote to check the connection:
int main()
{
MYSQL mysql;
mysql_init(&mysql);
if (mysql_real_connect(&mysql, NULL, "root", "asd2sdf3", "ccc", 0,
"/var/lib/mysql/mysql.sock", 0) == NULL)
printf("connection failed: %s\n", mysql_error(&mysql));
else
printf("nos problemos\n");
return 0;
}
This program executed says "nos problemos" --> connection w...