1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
/* mysql.vala
*
* Copyright (C) 2008 Jukka-Pekka Iivonen
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* Author:
* Jukka-Pekka Iivonen <jp0409@jippii.fi>
*/
[CCode (lower_case_cprefix = "mysql_", cheader_filename = "mysql/mysql.h")]
namespace Mysql {
/* Database Connection Handle */
[Compact]
[CCode (free_function = "mysql_close", cname = "MYSQL", cprefix = "mysql_")]
public class Database {
[CCode (argument0 = "NULL", cname = "mysql_init")]
public void init ();
public ulong affected_rows ();
public bool autocommit (bool mode);
public bool change_user (string username, string passwd, string dbname);
public weak string character_set_name ();
public bool commit ();
public int dump_debug_info ();
public uint errno ();
public weak string error ();
public weak string get_host_info ();
public uint get_proto_info ();
public weak string get_server_info ();
public ulong get_server_version ();
public weak string get_ssl_cipher ();
public weak string info ();
public ulong insert_id ();
public int kill (ulong pid);
public Result list_dbs (string wild);
public Result list_fields (string table, string wild);
public Result list_processes ();
public Result list_tables (string wild);
public bool more_results ();
public int next_result ();
public int options (int option, string arg);
public int ping ();
public int query (string stmt_str);
public bool real_connect (string host, string username, string passwd, string dbname, uint port, string? unix_socket, ulong client_flag);
public ulong real_escape_string (string to, string from, ulong length);
public int real_query (string query, ulong len);
public int reload ();
public bool rollback ();
public int select_db (string dbname);
public int set_character_set (string csname);
public void set_local_infile_default ();
public int set_server_option (int option);
public weak string sqlstate ();
public int shutdown (int shutdown_level);
public bool ssl_set (string key, string cert, string ca, string capath, string cipher);
public weak string stat ();
public Result? store_result ();
public ulong thread_id ();
public Result use_result ();
public uint warning_count ();
}
[Compact]
[CCode (free_function = "mysql_free_result", cname = "MYSQL_RES", cprefix = "mysql_")]
public class Result {
public bool eof ();
public Field fetch_field ();
public Field fetch_field_direct (uint field_nbr);
public Field[] fetch_fields ();
public ulong[] fetch_lengths ();
[CCode (array_length = false)]
public weak string[]? fetch_row ();
public uint fetch_count ();
public uint num_fields ();
public uint num_rows ();
public bool data_seek (ulong offset);
}
[CCode (cname = "MYSQL_FIELD")]
public struct Field {
}
public weak string get_client_info ();
public ulong get_client_version ();
public void debug (string msg);
public ulong hex_string (string to, string from, ulong length);
public void library_end ();
public int library_init (int argc, string[] argv, string[] groups);
public void server_end ();
public int server_init (int argc, string[] argv, string[] groups);
public void thread_end ();
public bool thread_init ();
public uint thread_safe ();
}
|