diff options
author | Bibiko <bibiko@eva.mpg.de> | 2009-06-22 22:57:00 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2009-06-22 22:57:00 +0000 |
commit | 6ea75a39b8053c947fbee5f4b1a7ab4da89120b6 (patch) | |
tree | 24555d9105236e013025b9453d4548bd6219f0fb /Source/CustomQuery.h | |
parent | fefee29365dfa3be66105c02192bcaf30248593f (diff) | |
download | sequelpro-6ea75a39b8053c947fbee5f4b1a7ab4da89120b6.tar.gz sequelpro-6ea75a39b8053c947fbee5f4b1a7ab4da89120b6.tar.bz2 sequelpro-6ea75a39b8053c947fbee5f4b1a7ab4da89120b6.zip |
• first trial to make the result table in the Custom Query editable for such fields which can be identified bijectively by the given table data
Diffstat (limited to 'Source/CustomQuery.h')
-rw-r--r-- | Source/CustomQuery.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/CustomQuery.h b/Source/CustomQuery.h index 6c33a375..03e42361 100644 --- a/Source/CustomQuery.h +++ b/Source/CustomQuery.h @@ -90,7 +90,9 @@ NSString *helpHTMLTemplate; NSMutableArray *fullResult; - NSArray *columnDefinition; + NSArray *cqColumnDefinition; + NSString *lastExecutedQuery; + BOOL tempAlertWasShown; // a temp value for nightly builts } @@ -143,6 +145,7 @@ - (void)doPerformQueryService:(NSString *)query; - (void)selectCurrentQuery; - (NSString *)usedQuery; +- (NSString *)argumentForRow:(NSUInteger)rowIndex ofTable:(NSString *)tableForColumn; @end |