#include <winsock.h>#include <stdio.h>#include <mysql.h>
Go to the source code of this file.
Functions | |
| int __stdcall | mysql_Connect (char *server, char *user, char *pass) |
| int __stdcall | mysql_SelectDb (char *db) |
| const char *__stdcall | mysql_Error () |
| int __stdcall | mysql_Query (char *query) |
| int __stdcall | mysql_NumRows () |
| char * | strip (char *str) |
| void | add_line (char **buf, char *line) |
| int __stdcall | mysql_LoadFromFile (char *file) |
| int __stdcall | mysql_NumFields () |
| int __stdcall | mysql_FetchRow () |
| char *__stdcall | mysql_FetchField (int i) |
Variables | |
| MYSQL * | mysql |
| MYSQL_RES * | result = NULL |
| MYSQL_ROW | row |
| void add_line | ( | char ** | buf, | |
| char * | line | |||
| ) |
| int __stdcall mysql_Connect | ( | char * | server, | |
| char * | user, | |||
| char * | pass | |||
| ) |
| char* __stdcall mysql_FetchField | ( | int | i | ) |
| int __stdcall mysql_FetchRow | ( | ) |
| int __stdcall mysql_LoadFromFile | ( | char * | file | ) |
| int __stdcall mysql_NumFields | ( | ) |
| int __stdcall mysql_NumRows | ( | ) |
| int __stdcall mysql_Query | ( | char * | query | ) |
| int __stdcall mysql_SelectDb | ( | char * | db | ) |
| MYSQL* mysql |
Definition at line 5 of file mypasql.c.
Referenced by db_mysql_close(), db_mysql_error(), db_mysql_load_bs_dbase(), db_mysql_load_cs_dbase(), db_mysql_load_exceptions(), db_mysql_load_hs_dbase(), db_mysql_load_news(), db_mysql_load_ns_dbase(), db_mysql_load_ns_req_dbase(), db_mysql_load_os_dbase(), db_mysql_open(), db_mysql_query(), db_mysql_quote(), db_mysql_save_bs_core(), db_mysql_save_cs_info(), db_mysql_save_exceptions(), db_mysql_save_hs_core(), db_mysql_save_news(), db_mysql_save_ns_alias(), db_mysql_save_ns_core(), db_mysql_save_ns_req(), db_mysql_save_os_db(), mysql_Connect(), mysql_Error(), mysql_FetchRow(), mysql_LoadFromFile(), mysql_NumFields(), mysql_NumRows(), mysql_Query(), mysql_rand(), and mysql_SelectDb().
| MYSQL_RES* result = NULL |
Definition at line 6 of file mypasql.c.
Referenced by lftocrlf(), match_userip(), match_usermask(), mysql_FetchField(), mysql_FetchRow(), mysql_NumFields(), mysql_NumRows(), mysql_Query(), smtp_read(), and smtp_send().
| MYSQL_ROW row |
Definition at line 7 of file mypasql.c.
Referenced by db_mysql_load_cs_dbase(), db_mysql_load_ns_dbase(), mysql_FetchField(), and mysql_FetchRow().
1.5.7.1