From 0a2b28b4034a6b44f7bb7a126935d9e58cc0c1f9 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 15 Jul 2015 18:43:03 +0200 Subject: Implement SQLite incremental BLOB/TEXT I/O --- common/statement/processing/driver.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'common/statement/processing/driver.cxx') diff --git a/common/statement/processing/driver.cxx b/common/statement/processing/driver.cxx index e6e37f3..414897f 100644 --- a/common/statement/processing/driver.cxx +++ b/common/statement/processing/driver.cxx @@ -21,7 +21,7 @@ insert (const char* stmt, { string r; odb::statement::process_insert ( - stmt, bind, bind_size, sizeof (void*), '$', r); + r, stmt, bind, bind_size, sizeof (void*), '$'); return r == expected; } @@ -33,7 +33,7 @@ update (const char* stmt, { string r; odb::statement::process_update ( - stmt, bind, bind_size, sizeof (void*), '$', r); + r, stmt, bind, bind_size, sizeof (void*), '$'); return r == expected; } @@ -45,7 +45,7 @@ select (const char* stmt, { string r; odb::statement::process_select ( - stmt, bind, bind_size, sizeof (void*), '[', ']', true, r); + r, stmt, bind, bind_size, sizeof (void*), '[', ']', true); return r == expected; } -- cgit v1.1