Skip to content

Commit c7024e7

Browse files
committed
Merge pull request #39 from nkottary/nk/documentation
Improved documentation of exported functions
2 parents 7aab44c + c447bbe commit c7024e7

8 files changed

+98
-70
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -30,22 +30,22 @@ command = """CREATE TABLE Employee
3030
JoinDate DATE,
3131
PRIMARY KEY (ID)
3232
);"""
33-
mysql_execute_query(con, command)
33+
mysql_execute(con, command)
3434

3535
# Insert some values
36-
mysql_execute_query(con, "INSERT INTO Employee (Name, Salary, JoinDate) values ("John", 25000.00, '2015-12-12'), ("Sam", 35000.00, '2012-18-17), ("Tom", 50000.00, '2013-12-14');")
36+
mysql_execute(con, "INSERT INTO Employee (Name, Salary, JoinDate) values ("John", 25000.00, '2015-12-12'), ("Sam", 35000.00, '2012-18-17), ("Tom", 50000.00, '2013-12-14');")
3737

3838
# Get SELECT results
3939
command = "SELECT * FROM Employee;"
40-
dframe = mysql_execute_query(con, command)
40+
dframe = mysql_execute(con, command)
4141

4242
# Close connection
4343
mysql_disconnect(con)
4444
```
4545

4646
## Getting the result set
4747

48-
By default, `mysql_execute_query` returns a DataFrame. To obtain each row as a tuple use `mysql_execute_query(con, command; opformat=MYSQL_TUPLES)`. The same can also be done with the `MySQLRowIterator`, example:
48+
By default, `mysql_execute` returns a DataFrame. To obtain each row as a tuple use `mysql_execute(con, command; opformat=MYSQL_TUPLES)`. The same can also be done with the `MySQLRowIterator`, example:
4949

5050
```julia
5151
for row in MySQLRowIterator(con, command)
@@ -68,11 +68,11 @@ values = [("John", 10000.50, "2015-8-3"),
6868
("Jim", 30000.00, "2015-6-2")]
6969

7070
for val in values
71-
mysql_execute_query(conn, [MYSQL_TYPE_VARCHAR, MYSQL_TYPE_FLOAT, MYSQL_TYPE_DATE], val)
71+
mysql_execute(conn, [MYSQL_TYPE_VARCHAR, MYSQL_TYPE_FLOAT, MYSQL_TYPE_DATE], val)
7272
end
7373

7474
mysql_stmt_prepare(conn, "SELECT * from Employee WHERE ID = ? AND Salary > ?")
75-
dframe = mysql_execute_query(conn, [MYSQL_TYPE_LONG, MYSQL_TYPE_FLOAT], [5, 35000.00])
75+
dframe = mysql_execute(conn, [MYSQL_TYPE_LONG, MYSQL_TYPE_FLOAT], [5, 35000.00])
7676

7777
# To iterate over the result and get each row as a tuple
7878
for row in MySQLRowIterator(conn, [MYSQL_TYPE_LONG, MYSQL_TYPE_FLOAT], [5, 35000.00])
@@ -100,7 +100,7 @@ The same function `mysql_metadata` can be called for prepared statements with th
100100

101101
# Multi-Query
102102

103-
`mysql_execute_query` handles multi-query. It returns an array of DataFrames and integers.
103+
`mysql_execute` handles multi-query. It returns an array of DataFrames and integers.
104104
The DataFrames correspond to the SELECT queries and the integers respresent the number of
105105
affected rows corresponding to non-SELECT queries in the multi statement.
106106

src/api.jl

-18
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,6 @@ function mysql_real_connect(mysqlptr::Ptr{Void},
4242
client_flag)
4343
end
4444

45-
"""
46-
Used to set options. Must be called after mysql_init and before
47-
mysql_real_connect. Can be called multiple times to set options.
48-
Returns non zero on error.
49-
"""
5045
function mysql_options(mysqlptr::Ptr{Void},
5146
option_type::Cuint,
5247
option::Ptr{Void})
@@ -119,10 +114,6 @@ function mysql_stmt_close(stmtptr::Ptr{MYSQL_STMT})
119114
stmtptr)
120115
end
121116

122-
"""
123-
Returns the value generated by auto increment column by the previous
124-
insert / update statement.
125-
"""
126117
function mysql_insert_id(mysqlptr::Ptr{Void})
127118
return ccall((:mysql_insert_id, mysql_lib),
128119
Culong,
@@ -159,9 +150,6 @@ function mysql_stmt_init(mysqlptr::Ptr{Void})
159150
mysqlptr)
160151
end
161152

162-
"""
163-
Creates the prepared statement. There should be only 1 statement
164-
"""
165153
function mysql_stmt_prepare(stmtptr::Ptr{MYSQL_STMT}, sql::AbstractString)
166154
s = utf8(sql)
167155
return ccall((:mysql_stmt_prepare, mysql_lib),
@@ -234,9 +222,6 @@ function mysql_stmt_bind_result(stmtptr::Ptr{MYSQL_STMT}, bind::Ptr{MYSQL_BIND})
234222
bind)
235223
end
236224

237-
"""
238-
Executes the query and returns the status of the same.
239-
"""
240225
function mysql_query(mysqlptr::Ptr{Void}, sql::AbstractString)
241226
return ccall((:mysql_query, mysql_lib),
242227
Cchar,
@@ -245,9 +230,6 @@ function mysql_query(mysqlptr::Ptr{Void}, sql::AbstractString)
245230
sql)
246231
end
247232

248-
"""
249-
Stores the result in to an object.
250-
"""
251233
function mysql_store_result(mysqlptr::Ptr{Void})
252234
return ccall((:mysql_store_result, mysql_lib),
253235
MYSQL_RES,

src/handy.jl

+79-29
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,18 @@
33
using Compat
44

55
"""
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.
810
"""
911
function mysql_options(hndl, opts)
1012
for (k, v) in opts
1113
mysql_options(hndl, k, v)
1214
end
15+
nothing
1316
end
1417

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-
"""
1918
function mysql_connect(host::AbstractString,
2019
user::AbstractString,
2120
passwd::AbstractString,
@@ -36,17 +35,19 @@ function mysql_connect(host::AbstractString,
3635
end
3736

3837
"""
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.
4141
"""
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())
4443
return mysql_connect(host, user, passwd, db, convert(Cuint, 0),
4544
convert(Ptr{Cchar}, C_NULL), CLIENT_MULTI_STATEMENTS, opts=opts)
4645
end
4746

4847
"""
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`.
5051
"""
5152
function mysql_disconnect(hndl)
5253
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)
8485
end)
8586
end
8687

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+
8796
# wrappers to take MySQLHandle as input as well as check for NULL pointer.
8897
for func = (:mysql_query, :mysql_options)
8998
eval(quote
@@ -96,6 +105,18 @@ for func = (:mysql_query, :mysql_options)
96105
end)
97106
end
98107

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+
"""
99120
function mysql_store_result(hndl::MySQLHandle)
100121
hndl.mysqlptr == C_NULL && throw(MySQLInterfaceError("Method called with NULL connection."))
101122
ptr = mysql_store_result(hndl.mysqlptr)
@@ -104,22 +125,24 @@ function mysql_store_result(hndl::MySQLHandle)
104125
end
105126

106127
"""
128+
mysql_execute(hndl::MySQLHandle, command::AbstractString; opformat=MYSQL_DATA_FRAME)
129+
107130
A function for executing queries and getting results.
108131
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
110133
rows and DataFrames. The number of affected rows correspond to the
111134
non-SELECT queries and the DataFrames for the SELECT queries in the
112135
multi-query.
113136
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
115138
rows for non-SELECT queries or a DataFrame for SELECT queries.
116139
117140
By default, returns SELECT query results as DataFrames.
118141
Set `opformat` to `MYSQL_TUPLES` to get results as tuples.
119142
"""
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))
123146

124147
data = Any[]
125148

@@ -132,21 +155,21 @@ function mysql_execute_query(con, command; opformat=MYSQL_DATA_FRAME)
132155
end
133156

134157
while true
135-
result = mysql_store_result(con.mysqlptr)
158+
result = mysql_store_result(hndl.mysqlptr)
136159
if result != C_NULL # if select query
137-
retval = convfunc(MySQLResult(con, result))
160+
retval = convfunc(MySQLResult(hndl, result))
138161
push!(data, retval)
139162
mysql_free_result(result)
140163

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)))
143166
else
144167
throw(MySQLInterfaceError("Query expected to produce results but did not."))
145168
end
146169

147-
status = mysql_next_result(con.mysqlptr)
170+
status = mysql_next_result(hndl.mysqlptr)
148171
if status > 0
149-
throw(MySQLInternalError(con))
172+
throw(MySQLInternalError(hndl))
150173
elseif status == -1 # if no more results
151174
break
152175
end
@@ -158,7 +181,12 @@ function mysql_execute_query(con, command; opformat=MYSQL_DATA_FRAME)
158181
return data
159182
end
160183

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)
162190
mysql_stmt_execute(hndl)
163191
naff = mysql_stmt_affected_rows(hndl)
164192
naff != typemax(typeof(naff)) && return naff # Not a SELECT query
@@ -171,11 +199,18 @@ function mysql_execute_query(hndl::MySQLHandle; opformat=MYSQL_DATA_FRAME)
171199
end
172200
end
173201

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)
176211
bindarr = mysql_bind_array(typs, values)
177212
mysql_stmt_bind_param(hndl, bindarr)
178-
return mysql_execute_query(hndl; opformat=opformat)
213+
return mysql_execute(hndl; opformat=opformat)
179214
end
180215

181216
for func = (:mysql_stmt_num_rows, :mysql_stmt_affected_rows,
@@ -188,6 +223,11 @@ for func = (:mysql_stmt_num_rows, :mysql_stmt_affected_rows,
188223
end)
189224
end
190225

226+
"""
227+
mysql_stmt_prepare(hndl::MySQLHandle, command::AbstractString)
228+
229+
Creates a prepared statement with the `command` SQL string.
230+
"""
191231
function mysql_stmt_prepare(hndl::MySQLHandle, command)
192232
hndl.stmtptr == C_NULL && throw(MySQLInterfaceError("Method called with NULL statement."))
193233
val = mysql_stmt_prepare(hndl.stmtptr, command)
@@ -264,22 +304,32 @@ function mysql_bind_array(typs, params)
264304
return bindarr
265305
end
266306

267-
function MySQLResult(con, resptr)
268-
res = MySQLResult(con, resptr)
307+
function MySQLResult(hndl, resptr)
308+
res = MySQLResult(hndl, resptr)
269309
finalizer(ret, x -> mysql_free_result(res.resptr))
270310
return res
271311
end
272312

313+
"""
314+
mysql_metadata(hndl::MySQLResult) -> MySQLMetadata
315+
316+
Get result metadata from a `MySQLResult` instance.
317+
"""
273318
function mysql_metadata(result::MySQLResult)
274319
result.resptr == C_NULL && throw(MySQLInterfaceError("Method called with null result set."))
275320
return MySQLMetadata(mysql_metadata(result.resptr))
276321
end
277322

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+
"""
278328
function mysql_metadata(hndl::MySQLHandle)
279329
hndl.stmtptr == C_NULL && throw(MySQLInterfaceError("Method called with null statement pointer."))
280330
return MySQLMetadata(mysql_metadata(hndl.stmtptr))
281331
end
282332

283-
export mysql_options, mysql_connect, mysql_disconnect, mysql_execute_query,
333+
export mysql_options, mysql_connect, mysql_disconnect, mysql_execute,
284334
mysql_insert_id, mysql_store_result, mysql_metadata, mysql_query,
285335
mysql_stmt_prepare

src/results.jl

-4
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,6 @@ function mysql_load_string_from_resultptr(result, idx)
117117
return strval
118118
end
119119

120-
"""
121-
Returns an array of MYSQL_FIELD. This array contains metadata information such
122-
as field type and field length etc. (see types.jl)
123-
"""
124120
function mysql_metadata(result::MYSQL_RES)
125121
nfields = mysql_num_fields(result)
126122
rawfields = mysql_fetch_fields(result)

test/test_basic.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ end
6565

6666
function show_results()
6767
command = """SELECT * FROM Employee;"""
68-
dframe = mysql_execute_query(hndl, command)
68+
dframe = mysql_execute(hndl, command)
6969
println("\n *** Results as Dataframe: \n", dframe)
7070
println("\n *** Expected Result: \n", DataFrameResults)
7171
@test dfisequal(dframe, DataFrameResults)
@@ -79,7 +79,7 @@ function show_results()
7979
end
8080

8181
println("\n *** Results as tuples: \n")
82-
tupres = mysql_execute_query(hndl, command; opformat=MYSQL_TUPLES)
82+
tupres = mysql_execute(hndl, command; opformat=MYSQL_TUPLES)
8383
println(tupres)
8484
for i in length(tupres)
8585
@test compare_rows(tupres[i], ArrayResults[i])

test/test_common.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,12 @@ function drop_test_database()
9999
end
100100

101101
function init_test()
102-
mysql_execute_query(hndl, "DROP DATABASE IF EXISTS mysqltest;")
102+
mysql_execute(hndl, "DROP DATABASE IF EXISTS mysqltest;")
103103
# There seems to be a bug in MySQL that prevents you
104104
# from saying "DROP USER IF EXISTS test@127.0.0.1;"
105105
# So here we create a user with a harmless privilege and drop the user.
106-
mysql_execute_query(hndl, "GRANT USAGE ON *.* TO 'test'@'127.0.0.1';")
107-
mysql_execute_query(hndl, "DROP USER 'test'@'127.0.0.1';")
106+
mysql_execute(hndl, "GRANT USAGE ON *.* TO 'test'@'127.0.0.1';")
107+
mysql_execute(hndl, "DROP USER 'test'@'127.0.0.1';")
108108
end
109109

110110
function run_test()

test/test_multiquery.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ function run_test()
1717
DROP DATABASE test_db"""
1818

1919
# Run twice: Related to an earlier bug where 2nd run was failing.
20-
mysql_execute_query(hndl, query)
21-
data = mysql_execute_query(hndl, query)
20+
mysql_execute(hndl, query)
21+
data = mysql_execute(hndl, query)
2222

2323
@show data
2424

0 commit comments

Comments
 (0)