diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-03-29 12:10:44 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-03-29 12:10:44 +0000 |
commit | ae0de60e69ffd51cda85ff70417cd354ee781c1c (patch) | |
tree | fb8119cd9eccfc12281d833bbffd103ef0e4c7c4 /Frameworks/MCPKit/MCPFoundationKit/MCPConnection.h | |
parent | 24b365b2a177d7de4cdbb7601424b6b1098a8414 (diff) | |
download | sequelpro-ae0de60e69ffd51cda85ff70417cd354ee781c1c.tar.gz sequelpro-ae0de60e69ffd51cda85ff70417cd354ee781c1c.tar.bz2 sequelpro-ae0de60e69ffd51cda85ff70417cd354ee781c1c.zip |
• fixed several issue for completion lists
• improved gathering and caching of structure data coming from connection windows with the same connection
• made the structure querying more stable against threading issues
• moved getUniqueDbIdentifierFor from MCPConnection to SPNavigatorController to be up-to-date in all connection windows
• improved detection if db structure querying should be performed or not (not yet finished)
Diffstat (limited to 'Frameworks/MCPKit/MCPFoundationKit/MCPConnection.h')
-rw-r--r-- | Frameworks/MCPKit/MCPFoundationKit/MCPConnection.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPConnection.h b/Frameworks/MCPKit/MCPFoundationKit/MCPConnection.h index 18450551..bf5d4145 100644 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPConnection.h +++ b/Frameworks/MCPKit/MCPFoundationKit/MCPConnection.h @@ -113,6 +113,11 @@ */ - (NSArray*)allViewNames; +/** + * + */ +- (NSArray*)allSchemaKeys; + @end @interface MCPConnection : NSObject @@ -276,9 +281,10 @@ void performThreadedKeepAlive(void *ptr); - (MCPResult *)listTablesFromDB:(NSString *)dbName like:(NSString *)tablesName; - (MCPResult *)listFieldsFromTable:(NSString *)tableName; - (MCPResult *)listFieldsFromTable:(NSString *)tableName like:(NSString *)fieldsName; + +// Structure querying - (void)queryDbStructureWithUserInfo:(NSDictionary*)userInfo; - (NSDictionary *)getDbStructure; -- (NSInteger)getUniqueDbIdentifierFor:(NSString*)term; - (NSArray *)getAllKeysOfDbStructure; // Server information |