summaryrefslogtreecommitdiff
path: root/src/result.cpp
diff options
context:
space:
mode:
authorAndreas Baumann <Andreas.Baumann@eurospider.com>2010-09-06 15:16:38 +0200
committerAndreas Baumann <Andreas.Baumann@eurospider.com>2010-09-06 15:16:38 +0200
commitf6c143f4c4e4f0a8118596909114e34dfc496b92 (patch)
tree1a372ef0090360cf80c8d3168ba8e4e619c6b349 /src/result.cpp
parent23979669900d75bccefb5b4a825882d329a2bd9d (diff)
downloadsqlitexx-f6c143f4c4e4f0a8118596909114e34dfc496b92.tar.gz
sqlitexx-f6c143f4c4e4f0a8118596909114e34dfc496b92.tar.bz2
fixed test9, works now
Diffstat (limited to 'src/result.cpp')
-rw-r--r--src/result.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/result.cpp b/src/result.cpp
index 5f989a9..6edd2e7 100644
--- a/src/result.cpp
+++ b/src/result.cpp
@@ -94,7 +94,7 @@ void result::Step( ) {
/* don't fail if the sqlite file is locked by another writer, try again later */
case SQLITE_BUSY:
- throw database_locked( );
+ throw database_locked( "database locked in step" );
default: {
ostringstream s;