1#pragma once
2
3#include <cstdint>
4#include <string>
5
6#ifndef _mysql_h
7
8struct st_mysql;
9using MYSQL = st_mysql;
10
11struct st_mysql_res;
12using MYSQL_RES = st_mysql_res;
13
14using MYSQL_ROW = char**;
15
16struct st_mysql_field;
17using MYSQL_FIELD = st_mysql_field;
18
19#endif
20
21namespace mysqlxx
22{
23
24using UInt64 = uint64_t;
25using Int64 = int64_t;
26using UInt32 = uint32_t;
27using Int32 = int32_t;
28
29using MYSQL_LENGTH = unsigned long;
30using MYSQL_LENGTHS = MYSQL_LENGTH *;
31using MYSQL_FIELDS = MYSQL_FIELD *;
32
33}
34