diff options
author | rowanbeentje <rowan@beent.je> | 2009-11-16 23:35:20 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2009-11-16 23:35:20 +0000 |
commit | 02097a03b20a58957149e68ad484fd2769831481 (patch) | |
tree | 3ffb01ce1aaa4d9b8950ea8f83c87a49baed0b54 /Source/TableContent.m | |
parent | cd0ac7f9878e2649846e46f559a7ba5ee3047e72 (diff) | |
download | sequelpro-02097a03b20a58957149e68ad484fd2769831481.tar.gz sequelpro-02097a03b20a58957149e68ad484fd2769831481.tar.bz2 sequelpro-02097a03b20a58957149e68ad484fd2769831481.zip |
- Correctly report errors triggered *during* result download for streaming results. This improves partial content displays (using the new code as of r1530) and also improves custom query error reporting.
Diffstat (limited to 'Source/TableContent.m')
-rw-r--r-- | Source/TableContent.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/TableContent.m b/Source/TableContent.m index d5c9e8d1..fbce4b33 100644 --- a/Source/TableContent.m +++ b/Source/TableContent.m @@ -553,7 +553,7 @@ [self processResultIntoDataStorage:streamingResult approximateRowCount:[prefs integerForKey:SPLimitResultsValue]]; [streamingResult release]; } - + if ([mySQLConnection queryCancelled] || ![[mySQLConnection getLastErrorMessage] isEqualToString:@""]) isInterruptedLoad = YES; else |