3
3
using Compat
4
4
5
5
"""
6
- Set multiple options specified in the dictionary opts. The keys represent the option type,
7
- for example `MYSQL_OPT_RECONNECT` and the values are the value of the corresponding option.
6
+ mysql_options(hndl::MySQLHandle, opts)
7
+
8
+ Set multiple options specified in the dictionary `opts`. The keys represent the option type,
9
+ for example `MYSQL_OPT_RECONNECT` and the values are the value of the corresponding option. See `MYSQL_OPT_*` for a list of options.
8
10
"""
9
11
function mysql_options (hndl, opts)
10
12
for (k, v) in opts
11
13
mysql_options (hndl, k, v)
12
14
end
15
+ nothing
13
16
end
14
17
15
- """
16
- A handy function that wraps mysql_init and mysql_real_connect. Also does error
17
- checking on the pointers returned by init and real_connect.
18
- """
19
18
function mysql_connect (host:: AbstractString ,
20
19
user:: AbstractString ,
21
20
passwd:: AbstractString ,
@@ -36,17 +35,19 @@ function mysql_connect(host::AbstractString,
36
35
end
37
36
38
37
"""
39
- Wrapper over mysql_real_connect with CLIENT_MULTI_STATEMENTS passed
40
- as client flag options.
38
+ mysql_connect(host::AbstractString, user::AbstractString, passwd::AbstractString, db::AbstractString = ""; opts = Dict())
39
+
40
+ Connect to a MySQL database.
41
41
"""
42
- function mysql_connect (host:: AbstractString , user:: AbstractString ,
43
- passwd:: AbstractString , db:: AbstractString ; opts = Dict ())
42
+ function mysql_connect (host, user, passwd, db= " " ; opts = Dict ())
44
43
return mysql_connect (host, user, passwd, db, convert (Cuint, 0 ),
45
44
convert (Ptr{Cchar}, C_NULL ), CLIENT_MULTI_STATEMENTS, opts= opts)
46
45
end
47
46
48
47
"""
49
- Wrapper over mysql_close. Must be called to close the connection opened by mysql_connect.
48
+ mysql_disconnect(hndl::MySQLHandle)
49
+
50
+ Close a handle to a MySQL database opened by `mysql_connect`.
50
51
"""
51
52
function mysql_disconnect (hndl)
52
53
hndl. mysqlptr == C_NULL && throw (MySQLInterfaceError (" Method called with NULL connection." ))
@@ -84,6 +85,14 @@ for func = (:mysql_field_count, :mysql_error, :mysql_insert_id)
84
85
end )
85
86
end
86
87
88
+ """
89
+ mysql_insert_id(hndl::MySQLHandle) -> Int
90
+
91
+ Returns the value generated by auto increment column by the previous
92
+ insert / update statement.
93
+ """
94
+ mysql_insert_id
95
+
87
96
# wrappers to take MySQLHandle as input as well as check for NULL pointer.
88
97
for func = (:mysql_query , :mysql_options )
89
98
eval (quote
@@ -96,6 +105,18 @@ for func = (:mysql_query, :mysql_options)
96
105
end )
97
106
end
98
107
108
+ """
109
+ mysql_query(hndl::MySQLHandle, sql::AbstractString)
110
+
111
+ Executes a SQL statement. This function does not return query results or number of affected rows. Please use `mysql_execute` for such purposes.
112
+ """
113
+ mysql_query
114
+
115
+ """
116
+ mysql_store_result(hndl::MySQLHandle) -> MySQLResult
117
+
118
+ Returns a `MySQLResult` instance for a query executed with `mysql_query`.
119
+ """
99
120
function mysql_store_result (hndl:: MySQLHandle )
100
121
hndl. mysqlptr == C_NULL && throw (MySQLInterfaceError (" Method called with NULL connection." ))
101
122
ptr = mysql_store_result (hndl. mysqlptr)
@@ -104,22 +125,24 @@ function mysql_store_result(hndl::MySQLHandle)
104
125
end
105
126
106
127
"""
128
+ mysql_execute(hndl::MySQLHandle, command::AbstractString; opformat=MYSQL_DATA_FRAME)
129
+
107
130
A function for executing queries and getting results.
108
131
109
- In the case of multi queries returns an array of number of affected
132
+ In the case of multi queries this function returns an array of number of affected
110
133
rows and DataFrames. The number of affected rows correspond to the
111
134
non-SELECT queries and the DataFrames for the SELECT queries in the
112
135
multi-query.
113
136
114
- In the case of non-multi queries returns either the number of affected
137
+ In the case of non-multi queries this function returns either the number of affected
115
138
rows for non-SELECT queries or a DataFrame for SELECT queries.
116
139
117
140
By default, returns SELECT query results as DataFrames.
118
141
Set `opformat` to `MYSQL_TUPLES` to get results as tuples.
119
142
"""
120
- function mysql_execute_query (con , command; opformat= MYSQL_DATA_FRAME)
121
- con . mysqlptr == C_NULL && throw (MySQLInterfaceError (" Method called with null connection." ))
122
- mysql_query (con . mysqlptr, command) != 0 && throw (MySQLInternalError (con ))
143
+ function mysql_execute (hndl , command; opformat= MYSQL_DATA_FRAME)
144
+ hndl . mysqlptr == C_NULL && throw (MySQLInterfaceError (" Method called with null connection." ))
145
+ mysql_query (hndl . mysqlptr, command) != 0 && throw (MySQLInternalError (hndl ))
123
146
124
147
data = Any[]
125
148
@@ -132,21 +155,21 @@ function mysql_execute_query(con, command; opformat=MYSQL_DATA_FRAME)
132
155
end
133
156
134
157
while true
135
- result = mysql_store_result (con . mysqlptr)
158
+ result = mysql_store_result (hndl . mysqlptr)
136
159
if result != C_NULL # if select query
137
- retval = convfunc (MySQLResult (con , result))
160
+ retval = convfunc (MySQLResult (hndl , result))
138
161
push! (data, retval)
139
162
mysql_free_result (result)
140
163
141
- elseif mysql_field_count (con . mysqlptr) == 0
142
- push! (data, @compat Int (mysql_affected_rows (con . mysqlptr)))
164
+ elseif mysql_field_count (hndl . mysqlptr) == 0
165
+ push! (data, @compat Int (mysql_affected_rows (hndl . mysqlptr)))
143
166
else
144
167
throw (MySQLInterfaceError (" Query expected to produce results but did not." ))
145
168
end
146
169
147
- status = mysql_next_result (con . mysqlptr)
170
+ status = mysql_next_result (hndl . mysqlptr)
148
171
if status > 0
149
- throw (MySQLInternalError (con ))
172
+ throw (MySQLInternalError (hndl ))
150
173
elseif status == - 1 # if no more results
151
174
break
152
175
end
@@ -158,7 +181,12 @@ function mysql_execute_query(con, command; opformat=MYSQL_DATA_FRAME)
158
181
return data
159
182
end
160
183
161
- function mysql_execute_query (hndl:: MySQLHandle ; opformat= MYSQL_DATA_FRAME)
184
+ """
185
+ mysql_execute(hndl::MySQLHandle; opformat=MYSQL_DATA_FRAME)
186
+
187
+ Execute and get results for prepared statements. A statement must be prepared with `mysql_stmt_prepare` before calling this function.
188
+ """
189
+ function mysql_execute (hndl:: MySQLHandle ; opformat= MYSQL_DATA_FRAME)
162
190
mysql_stmt_execute (hndl)
163
191
naff = mysql_stmt_affected_rows (hndl)
164
192
naff != typemax (typeof (naff)) && return naff # Not a SELECT query
@@ -171,11 +199,18 @@ function mysql_execute_query(hndl::MySQLHandle; opformat=MYSQL_DATA_FRAME)
171
199
end
172
200
end
173
201
174
- function mysql_execute_query (hndl:: MySQLHandle , typs, values;
175
- opformat= MYSQL_DATA_FRAME)
202
+ """
203
+ mysql_execute(hndl::MySQLHandle, typs, values; opformat=MYSQL_DATA_FRAME)
204
+
205
+ Execute and get results for prepared statements. A statement must be prepared with `mysql_stmt_prepare` before calling this function.
206
+
207
+ Parameters are passed to the query in the `values` array. The corresponding MySQL types must be mentioned in the `typs` array. See `MYSQL_TYPE_*` for a list of MySQL types.
208
+ """
209
+ function mysql_execute (hndl:: MySQLHandle , typs, values;
210
+ opformat= MYSQL_DATA_FRAME)
176
211
bindarr = mysql_bind_array (typs, values)
177
212
mysql_stmt_bind_param (hndl, bindarr)
178
- return mysql_execute_query (hndl; opformat= opformat)
213
+ return mysql_execute (hndl; opformat= opformat)
179
214
end
180
215
181
216
for func = (:mysql_stmt_num_rows , :mysql_stmt_affected_rows ,
@@ -188,6 +223,11 @@ for func = (:mysql_stmt_num_rows, :mysql_stmt_affected_rows,
188
223
end )
189
224
end
190
225
226
+ """
227
+ mysql_stmt_prepare(hndl::MySQLHandle, command::AbstractString)
228
+
229
+ Creates a prepared statement with the `command` SQL string.
230
+ """
191
231
function mysql_stmt_prepare (hndl:: MySQLHandle , command)
192
232
hndl. stmtptr == C_NULL && throw (MySQLInterfaceError (" Method called with NULL statement." ))
193
233
val = mysql_stmt_prepare (hndl. stmtptr, command)
@@ -264,22 +304,32 @@ function mysql_bind_array(typs, params)
264
304
return bindarr
265
305
end
266
306
267
- function MySQLResult (con , resptr)
268
- res = MySQLResult (con , resptr)
307
+ function MySQLResult (hndl , resptr)
308
+ res = MySQLResult (hndl , resptr)
269
309
finalizer (ret, x -> mysql_free_result (res. resptr))
270
310
return res
271
311
end
272
312
313
+ """
314
+ mysql_metadata(hndl::MySQLResult) -> MySQLMetadata
315
+
316
+ Get result metadata from a `MySQLResult` instance.
317
+ """
273
318
function mysql_metadata (result:: MySQLResult )
274
319
result. resptr == C_NULL && throw (MySQLInterfaceError (" Method called with null result set." ))
275
320
return MySQLMetadata (mysql_metadata (result. resptr))
276
321
end
277
322
323
+ """
324
+ mysql_metadata(hndl::MySQLHandle) -> MySQLMetadata
325
+
326
+ Get result metadata for a query. The query must be prepared with `mysql_stmt_prepare` before calling this function.
327
+ """
278
328
function mysql_metadata (hndl:: MySQLHandle )
279
329
hndl. stmtptr == C_NULL && throw (MySQLInterfaceError (" Method called with null statement pointer." ))
280
330
return MySQLMetadata (mysql_metadata (hndl. stmtptr))
281
331
end
282
332
283
- export mysql_options, mysql_connect, mysql_disconnect, mysql_execute_query ,
333
+ export mysql_options, mysql_connect, mysql_disconnect, mysql_execute ,
284
334
mysql_insert_id, mysql_store_result, mysql_metadata, mysql_query,
285
335
mysql_stmt_prepare
0 commit comments