From 88f25db3801139eb6e7b41d3f006b78dd069a9ba Mon Sep 17 00:00:00 2001 From: Brian Cully Date: Mon, 28 Jul 2008 14:49:27 -0400 Subject: Add test for param queries. --- src/mysqlerl.erl | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/mysqlerl.erl b/src/mysqlerl.erl index 9b835cf..53f526e 100644 --- a/src/mysqlerl.erl +++ b/src/mysqlerl.erl @@ -8,7 +8,7 @@ -export([convert_type/1]). --export([test_start/0, test_msg/0, test_query/0]). +-export([test_start/0, test_msg/0, test_query/0, test_param_query/0]). -export([start/0, start/1, stop/0, commit/2, commit/3, connect/6, disconnect/1, describe_table/2, @@ -32,6 +32,11 @@ test_query() -> sql_query(mysqlerl_connection_sup:random_child(), "SELECT COUNT(*) FROM user", 2000). +test_param_query() -> + param_query(mysqlerl_connection_sup:random_child(), + "SELECT * FROM user WHERE username=?", + [{{sql_varchar, 20}, "bjc"}]). + start() -> start(temporary). -- cgit v1.2.3