diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-12-02 10:42:31 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-12-02 10:42:31 +0000 |
commit | f43ceef620d7d2f1325b4bbbdede58e5dc7d47f7 (patch) | |
tree | 1e4e55586c41375561a9d80db2d0181ca3ccc0fa /Source/SPCopyTable.h | |
parent | c17b46be3a8f3b4e7f952b70928d88768355ed70 (diff) | |
download | sequelpro-f43ceef620d7d2f1325b4bbbdede58e5dc7d47f7.tar.gz sequelpro-f43ceef620d7d2f1325b4bbbdede58e5dc7d47f7.tar.bz2 sequelpro-f43ceef620d7d2f1325b4bbbdede58e5dc7d47f7.zip |
• Bundle Command
- for Data Table scope added the chance to specify the handling of BLOB fields (if underlying data are kind of NSData or GEOMETRY) as 'Exclude', 'Include', 'save as image file - the data will be saved as tif file and the path will appear in the table', 'save as file - the data will be saved as raw dat file and the path will appear in the table'; for GEOMETRY fields if set to 'save as {image} file' the representation will be saved as PDF file otherwise the WKT string appears
Diffstat (limited to 'Source/SPCopyTable.h')
-rw-r--r-- | Source/SPCopyTable.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/SPCopyTable.h b/Source/SPCopyTable.h index 89030976..4723dbc9 100644 --- a/Source/SPCopyTable.h +++ b/Source/SPCopyTable.h @@ -48,9 +48,12 @@ NSUserDefaults *prefs; NSRange fieldEditorSelectedRange; + NSString *copyBlobFileDirectory; } +@property(readwrite,assign) NSString *copyBlobFileDirectory; + @property(readwrite,assign) NSRange fieldEditorSelectedRange; /*! @@ -90,7 +93,7 @@ returns something meaningful. @result The above described string, or nil if nothing selected */ -- (NSString *)rowsAsTabStringWithHeaders:(BOOL)withHeaders onlySelectedRows:(BOOL)onlySelected; +- (NSString *)rowsAsTabStringWithHeaders:(BOOL)withHeaders onlySelectedRows:(BOOL)onlySelected blobHandling:(NSInteger)withBlobHandling; /*! @method rowsAsCsvStringWithHeaders:onlySelectedRows: @@ -101,7 +104,7 @@ returns something meaningful. @result The above described string, or nil if nothing selected */ -- (NSString *)rowsAsCsvStringWithHeaders:(BOOL)withHeaders onlySelectedRows:(BOOL)onlySelected; +- (NSString *)rowsAsCsvStringWithHeaders:(BOOL)withHeaders onlySelectedRows:(BOOL)onlySelected blobHandling:(NSInteger)withBlobHandling; /* * Generate a string in form of INSERT INTO <table> VALUES () of |