aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPQueryController.h
diff options
context:
space:
mode:
authorBibiko <bibiko@eva.mpg.de>2009-10-15 13:45:35 +0000
committerBibiko <bibiko@eva.mpg.de>2009-10-15 13:45:35 +0000
commit7e023c253e72c9a27bba0728160fbb8aaf19ffd1 (patch)
tree1e706e19da51c15ee51ee71de4dc69766f45ad6c /Source/SPQueryController.h
parent778c3556b551077d488af6378108db0630775953 (diff)
downloadsequelpro-7e023c253e72c9a27bba0728160fbb8aaf19ffd1.tar.gz
sequelpro-7e023c253e72c9a27bba0728160fbb8aaf19ffd1.tar.bz2
sequelpro-7e023c253e72c9a27bba0728160fbb8aaf19ffd1.zip
• added the chance to set "allowConsoleUpdate"
- if set to YES the Console Log won't be updated after adding a new message even if the window is visible; this is useful if SP has to execute a large number of queries • first steps to increase the deletion of a large number of rows in the Content pane - removed deprecated 'selectedRowEnumerator' - set Console Log's 'allowConsoleUpdate' to NO if more than 10 rows should be deleted - instead of adding the successful deleted row indexes into a new array delete these indexes from the selectedRows NSIndexSet
Diffstat (limited to 'Source/SPQueryController.h')
-rw-r--r--Source/SPQueryController.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/SPQueryController.h b/Source/SPQueryController.h
index 65287961..8a350a32 100644
--- a/Source/SPQueryController.h
+++ b/Source/SPQueryController.h
@@ -42,6 +42,7 @@
BOOL showSelectStatementsAreDisabled;
BOOL showHelpStatementsAreDisabled;
BOOL filterIsActive;
+ BOOL allowConsoleUpdate;
NSMutableString *activeFilterString;
@@ -57,6 +58,7 @@
}
@property (readwrite, retain) NSFont *consoleFont;
+@property (readwrite) BOOL allowConsoleUpdate;
+ (SPQueryController *)sharedQueryController;