Hello again... I opened mysql.h and found this...
--------------------------- #ifdef USE_OLD_FUNCTIONS MYSQL * STDCALL mysql_connect(MYSQL *mysql, const char *host, const char *user, const char *passwd); int STDCALL mysql_create_db(MYSQL *mysql, const char *DB); int STDCALL mysql_drop_db(MYSQL *mysql, const char *DB); #define mysql_reload(mysql) mysql_refresh((mysql),REFRESH_GRANT) #endif --------------------------- why "old functions"? should I use new ones instead? I #define'd USE_OLD_FUNCTIONS before #include'ing mysql.h and now compiles fine, but I think it is not the best way... any comments or suggestions? thnx! -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]