summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2010-02-13 11:59:35 +0100
committerAndreas Baumann <abaumann@yahoo.com>2010-02-13 11:59:35 +0100
commit25a8fc9e271eaddbf1ce370666c7e450be430679 (patch)
treed2ed25bd0b55dc614f242b1d7ede1fef0fc3717c
parent51bd23ec2c86b0fd3218d028a2fbacb611df6b0d (diff)
downloadsqlitexx-25a8fc9e271eaddbf1ce370666c7e450be430679.tar.gz
sqlitexx-25a8fc9e271eaddbf1ce370666c7e450be430679.tar.bz2
removed some references to old sourceforge/track ticket numbers in the code
-rw-r--r--src/result.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/result.cpp b/src/result.cpp
index 80406af..0994f47 100644
--- a/src/result.cpp
+++ b/src/result.cpp
@@ -93,7 +93,7 @@ TRY_AGAIN_STEP:
_crow++;
break;
- /* hotfix for ticket #13 */
+ /* don't fail if the sqlite file is locked by another writer, try again later */
case SQLITE_BUSY:
sqlitexx_port_sleep( 1 );
goto TRY_AGAIN_STEP;
@@ -122,9 +122,10 @@ void result::BufferData( ) {
break;
case SQLITE3_TEXT:
- /* KLUDGE: the documentation is not specific about returning NULL here (but
- * it happens, see ticket #16). I get the feeling this is undefined behaviour,
- * so people should not relly on it from outside. */
+ /* KLUDGE: the documentation is not specific about returning NULL here
+ * I get the feeling this is undefined behaviour, so people should not
+ * relly on it from outside.
+ */
tmp = (const char *)sqlite3_column_text( _stmt, i );
if( tmp != NULL ) {
value.value.s = (unsigned char *)strdup( tmp );