diff options
author | Bibiko <bibiko@eva.mpg.de> | 2009-06-22 07:28:47 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2009-06-22 07:28:47 +0000 |
commit | fab8a7ddf951ed3697760093b43a612fa51a78c6 (patch) | |
tree | a50ea949cda8399b8dd5c1bec25f43d23bfdc864 /Source/CustomQuery.h | |
parent | 859ca6771c479475ed454a4dbc61131fad30b492 (diff) | |
download | sequelpro-fab8a7ddf951ed3697760093b43a612fa51a78c6.tar.gz sequelpro-fab8a7ddf951ed3697760093b43a612fa51a78c6.tar.bz2 sequelpro-fab8a7ddf951ed3697760093b43a612fa51a78c6.zip |
• first steps to synchronize CustomQuery table and ContentTable
- CustomQuery table now allows to copy selected rows as SQL INSERT (table name is set to "<table>"
- if a field is a blob display only the first 255 bytes/chars in the CQ table for speed reasons
- blob fields in CQ does not listen to the pref setting for "LoadBlobsAsNeeded" because it could happen that no one-to-one relation to their original data will be found
Diffstat (limited to 'Source/CustomQuery.h')
-rw-r--r-- | Source/CustomQuery.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/CustomQuery.h b/Source/CustomQuery.h index 0be5dc0d..6c33a375 100644 --- a/Source/CustomQuery.h +++ b/Source/CustomQuery.h @@ -88,6 +88,9 @@ int helpTarget; WebHistory *helpHistory; NSString *helpHTMLTemplate; + + NSMutableArray *fullResult; + NSArray *columnDefinition; } @@ -123,6 +126,7 @@ // Accessors - (NSArray *)currentResult; +- (NSArray *)fetchResultAsArray:(CMMCPResult *)theResult; // MySQL Help - (NSString *)getHTMLformattedMySQLHelpFor:(NSString *)aString; |