blob: 2f57f330db8a682667feb8d1e61066515ae84a1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef MYGRATE_INPUT_MYSQLCONN_H
#define MYGRATE_INPUT_MYSQLCONN_H
#include <mysql.h>
namespace MyGrate::Input {
class MySQLConn : public MYSQL {
public:
MySQLConn(const char * const host, const char * const user, const char * const pass, unsigned short port);
~MySQLConn();
void query(const char * const);
};
}
#endif
|