I'm using MySQL version 4.0.20a on win98.
Compiler is Bloodshed Dev-C++ version 4.

My program compiles and links but gives a page fault error on running.
I'm linking the '\mysql\lib\opt\mysqlclient.lib' file.

Linker gives the warning >> ignoring duplicate section '.text'

CODE:
#include <config-win.h>
#include <mysql.h>
#include <stdio.h>

int main(int argc, char *argv[])
{
 MYSQL mysql;
 MYSQL *connection;
 connection= mysql_real_connect(&mysql, "localhost", "root", "premal", "test", 
0, NULL, 0);

    return 0;
 }
  
Regards
Premal.


Reply via email to