diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-07-15 18:43:03 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-07-15 18:43:03 +0200 |
commit | 0a2b28b4034a6b44f7bb7a126935d9e58cc0c1f9 (patch) | |
tree | 65ecf66a742cc7f80f784b996fcb7a3e6ca14253 /common/statement/processing/driver.cxx | |
parent | 0d65234bc5c6742721c00360a0e3117d51d89c5f (diff) |
Implement SQLite incremental BLOB/TEXT I/O
Diffstat (limited to 'common/statement/processing/driver.cxx')
-rw-r--r-- | common/statement/processing/driver.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
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; } |