diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-03-26 18:42:57 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-03-26 18:42:57 +0000 |
commit | 1c3c288b8cc26d8de7119e3fff9b1ad60c9ee63a (patch) | |
tree | 7605916f55725a00f1a9010cbde5845b7ba346fb /Frameworks/MCPKit/MCPFoundationKit/MCPConnection.h | |
parent | e9d49cbf9c48cbbff682c3f5f2e71c7c7a9e3b91 (diff) | |
download | sequelpro-1c3c288b8cc26d8de7119e3fff9b1ad60c9ee63a.tar.gz sequelpro-1c3c288b8cc26d8de7119e3fff9b1ad60c9ee63a.tar.bz2 sequelpro-1c3c288b8cc26d8de7119e3fff9b1ad60c9ee63a.zip |
• Navigator and completion list
- fixed issues for deletion of a db like remove all relevant items and refresh the navigator
- simplified and minimized code and memory usage while querying the connection structure
- whether a schema name is an unique db or table will be evaluated on run-time via allKeysofDbStructure
Diffstat (limited to 'Frameworks/MCPKit/MCPFoundationKit/MCPConnection.h')
-rw-r--r-- | Frameworks/MCPKit/MCPFoundationKit/MCPConnection.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPConnection.h b/Frameworks/MCPKit/MCPFoundationKit/MCPConnection.h index 0b239b5f..352f152b 100644 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPConnection.h +++ b/Frameworks/MCPKit/MCPFoundationKit/MCPConnection.h @@ -98,6 +98,11 @@ */ - (NSArray*)allDatabaseNames; +/** + * + */ +- (NSArray*)allSystemDatabaseNames; + @end @interface MCPConnection : NSObject @@ -139,8 +144,7 @@ NSString *serverVersionString; NSMutableDictionary *structure; - NSDictionary *uniqueDbIdentifier; - NSArray *allKeysofDbStructure; + NSMutableSet *allKeysofDbStructure; NSTimer *keepAliveTimer; double lastKeepAliveTime; |