JunkBox_Lib 1.10.1
Loading...
Searching...
No Matches
mysql_tool.h
Go to the documentation of this file.
1#ifndef DISABLE_MYSQL
2
3#ifndef __JBXL_MYSQL_TOOL_H_
4#define __JBXL_MYSQL_TOOL_H_
5
15//#include "common.h"
16//#include "tlist.h"
17#include "xtools.h"
18
19#include <mysql/mysql.h>
20
21
22#define SQL_CONF_FILE "/etc/my.cnf"
23#define SQL_DEFAULT_TIMEOUT 10
24
25
26MYSQL* sql_open(char* hostname, char* dbname, char* username, char* passwd, unsigned int tmot);
27void sql_close(MYSQL* mysql);
28
29
30#endif // _MYSQL_TOOL_H
31#endif // DISABLE_MYSQL
32
MYSQL * sql_open(char *hostname, char *dbname, char *username, char *passwd, unsigned int tmot)
Definition mysql_tool.c:14
void sql_close(MYSQL *mysql)
Definition mysql_tool.c:50
汎用拡張ツールヘッダ