summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2010-09-04 16:54:57 +0200
committerAndreas Baumann <abaumann@yahoo.com>2010-09-04 16:54:57 +0200
commit9a717577d06f00bb8a0c7338f7b687540b5e017d (patch)
treea81207d179392c440b700e86e5d400821e6bac45 /tests
parenta33fbbf643a52938063779a35167757a2426446e (diff)
downloadsqlitexx-9a717577d06f00bb8a0c7338f7b687540b5e017d.tar.gz
sqlitexx-9a717577d06f00bb8a0c7338f7b687540b5e017d.tar.bz2
some fixes for unsigned int parameters for prepared statements
Diffstat (limited to 'tests')
-rw-r--r--tests/test9.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test9.cpp b/tests/test9.cpp
index 62e17dc..bbcddb6 100644
--- a/tests/test9.cpp
+++ b/tests/test9.cpp
@@ -52,7 +52,7 @@ static THREAD_FUNC_DECL produce( void *thread_data )
try {
connection c( "test9.db" );
- c.prepare( "ins", "insert into x values( ? )" )( "text", sqlite3xx::prepare::treat_direct );
+ c.prepare( "ins", "insert into x values( ? )" )( "integer", prepare::treat_direct );
for( int i = 0; i < NOF_PRODUCER_TRANSACTIONS; i++ ) {
work t( c, "ins" );