August Mueller 13 år sedan
förälder
incheckning
355a5913e0
1 ändrade filer med 4 tillägg och 0 borttagningar
  1. 4 0
      src/fmdb.m

+ 4 - 0
src/fmdb.m

@@ -117,6 +117,8 @@ int main (int argc, const char * argv[]) {
     // the autorelease pool closes, so sqlite will complain about it.
     [rs close];  
     
+    FMDBQuickCheck(![db hasOpenResultSets]);
+    
     // ----------------------------------------------------------------------------------------
     // blob support.
     [db executeUpdate:@"create table blobTable (a text, b blob)"];
@@ -736,6 +738,8 @@ int main (int argc, const char * argv[]) {
                 rowCount++;
             }
             
+            FMDBQuickCheck(![db hasOpenResultSets]);
+            
             NSLog(@"after rollback, rowCount is %d (should be 2)", rowCount);
             
             FMDBQuickCheck(rowCount == 2);