search for: mysql_errno

Displaying 7 results from an estimated 7 matches for "mysql_errno".

2010 Nov 26
1
R Tools & Vista_x64: Problem compiling RMySQL?
...L.c:(.text+0xbff): undefined reference to `mysql_affected_rows' RS-MySQL.o:RS-MySQL.c:(.text+0xd27): undefined reference to `mysql_fetch_row' RS-MySQL.o:RS-MySQL.c:(.text+0xd3d): undefined reference to `mysql_fetch_lengths' RS-MySQL.o:RS-MySQL.c:(.text+0xf2e): undefined reference to `mysql_errno' RS-MySQL.o:RS-MySQL.c:(.text+0x1093): undefined reference to `mysql_errno' RS-MySQL.o:RS-MySQL.c:(.text+0x109e): undefined reference to `mysql_error' RS-MySQL.o:RS-MySQL.c:(.text+0x1114): undefined reference to `mysql_fetch_row' RS-MySQL.o:RS-MySQL.c:(.text+0x1121): undefined refe...
2007 May 23
0
Problems compiling res_config_mysql (asterisk addons)
...undefined reference to `mysql_real_connect' res_config_mysql.o(.text+0x1e91):/usr/local/src/asterisk-addons-1.4.1/res_config_mysql.c:622: undefined reference to `ast_log' res_config_mysql.o(.text+0x1ecc):/usr/local/src/asterisk-addons-1.4.1/res_config_mysql.c:627: undefined reference to `mysql_errno' res_config_mysql.o(.text+0x1eff):/usr/local/src/asterisk-addons-1.4.1/res_config_mysql.c:627: undefined reference to `ast_log' res_config_mysql.o(.text+0x1f14):/usr/local/src/asterisk-addons-1.4.1/res_config_mysql.c:628: undefined reference to `mysql_error' res_config_mysql.o(.text+0...
2010 May 14
4
Dovecot 2.0beta5 Quota/Dict
I can not use quota/dict when i configure it come outs this error. If the configuration gos wrong it just do not happen anything, but if the filds and name are ok, happen this.. > May 14 17:03:40 auth: Debug: Loading modules from directory: > /usr/lib/dovecot/auth > May 14 17:03:40 auth: Debug: master in: USER 1 sfrique at nti.uff.br > service=lda > May 14 17:03:40 auth:
2005 Nov 09
0
mysql dovecot 1.0alpha4
...lyra", /* database to use */ 0, /* port (use default) */ NULL, /* socket (use default) */ 0) /* flags (none) */ == NULL) { fprintf (stderr, "mysql_real_connect() failed:\nError %u (%s)\n", mysql_errno (h), mysql_error (h)); exit (1); }
2005 Nov 09
0
More informations on mysql bug
...uot;, /* database to use */ 0, /* port (use default) */ NULL, /* socket (use default) */ 0) /* flags (none) */ == NULL) { fprintf (stderr, "mysql_real_connect() failed:\nError %u (%s)\n", mysql_errno (h), mysql_error (h)); exit (1); } } This program is working outsine of dovecot. So its one of the library or the compilation itself that cause the problem of access denied. Any idea??? Thanks
2005 Dec 18
2
dovecot behaving badly after upgrade..
i upgraded dovecot from 0.99 to the last version and it doesnt seem to work anymore.. im using vpopmail userdb and i get this in the logs : dovecot: Dec 18 03:42:08 Info: auth(default): client in: AUTH 1 PLAIN service=POP3 lip=81.x.x.x rip=81.x.x.x resp= dovecot: Dec 18 03:42:08 Info: auth(default): client out: CONT 1 dovecot: Dec 18 03:42:08 Info: auth(default): client in: CONT 1
2010 Mar 05
2
Bug in driver-mysql.c + fix
...ecause of the CLIENT_MULTI_RESULTS on mysql_real_connect() + * we need to read extra results - there should not be any. + */ + if(nr == 0) /* Just ignore more results */ + continue; + + result->api = driver_mysql_error_result; + goto off; + } if (result->result != NULL || mysql_errno(conn->mysql) == 0) break; /* fallback */ @@ -451,6 +464,7 @@ break; } +off: result->conn = conn; return &result->api; }