diff options
Diffstat (limited to 'Source')
-rw-r--r-- | Source/TableDump.h | 1 | ||||
-rw-r--r-- | Source/TableDump.m | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Source/TableDump.h b/Source/TableDump.h index d32cddea..dc99d4bb 100644 --- a/Source/TableDump.h +++ b/Source/TableDump.h @@ -75,6 +75,7 @@ IBOutlet id addCreateTableSwitch; IBOutlet id addTableContentSwitch; IBOutlet id addErrorsSwitch; + IBOutlet id sqlFullStreamingSwitch; IBOutlet id errorsSheet; IBOutlet id errorsView; IBOutlet id singleProgressSheet; diff --git a/Source/TableDump.m b/Source/TableDump.m index 4e53afb9..e07e4c86 100644 --- a/Source/TableDump.m +++ b/Source/TableDump.m @@ -1001,7 +1001,7 @@ rowCount = [[[[mySQLConnection queryString:[NSString stringWithFormat:@"SELECT COUNT(1) FROM %@", [tableName backtickQuotedString]]] fetchRowAsArray] objectAtIndex:0] intValue]; // Set up a result set in streaming mode - streamingResult = [mySQLConnection streamingQueryString:[NSString stringWithFormat:@"SELECT * FROM %@", [tableName backtickQuotedString]]]; + streamingResult = [mySQLConnection streamingQueryString:[NSString stringWithFormat:@"SELECT * FROM %@", [tableName backtickQuotedString]] useLowMemoryBlockingStreaming:([sqlFullStreamingSwitch state] == NSOnState)]; fieldNames = [streamingResult fetchFieldNames]; // Update the progress text and set the progress bar back to determinate |