aboutsummaryrefslogtreecommitdiffstats
path: root/Source/CustomQuery.h
diff options
context:
space:
mode:
authorBibiko <bibiko@eva.mpg.de>2009-06-22 22:57:00 +0000
committerBibiko <bibiko@eva.mpg.de>2009-06-22 22:57:00 +0000
commit6ea75a39b8053c947fbee5f4b1a7ab4da89120b6 (patch)
tree24555d9105236e013025b9453d4548bd6219f0fb /Source/CustomQuery.h
parentfefee29365dfa3be66105c02192bcaf30248593f (diff)
downloadsequelpro-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.h5
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