diff options
author | stuconnolly <stuart02@gmail.com> | 2012-01-14 13:52:16 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2012-01-14 13:52:16 +0000 |
commit | 55de01f18ced503be7f6c0fe2b997e347f2b6e78 (patch) | |
tree | caf2a7664bec0f16ed26f514d2d0cb30b2df29fc /Source/SPCustomQuery.h | |
parent | 24837e4f269c7ad44c555066d7f5d3d9c4d2c139 (diff) | |
download | sequelpro-55de01f18ced503be7f6c0fe2b997e347f2b6e78.tar.gz sequelpro-55de01f18ced503be7f6c0fe2b997e347f2b6e78.tar.bz2 sequelpro-55de01f18ced503be7f6c0fe2b997e347f2b6e78.zip |
When exporting a query result as CSV ensure that we're allowing the exporter decide how to deal with NULLs rather than passing them already converted to the user's placeholder prefernce which results in them being quoted. Fixes issue #1281. Also, general tidy up.
Diffstat (limited to 'Source/SPCustomQuery.h')
-rw-r--r-- | Source/SPCustomQuery.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/SPCustomQuery.h b/Source/SPCustomQuery.h index 5c4a4186..aa78a250 100644 --- a/Source/SPCustomQuery.h +++ b/Source/SPCustomQuery.h @@ -238,6 +238,7 @@ // Accessors - (NSArray *)currentResult; +- (NSArray *)currentDataResultWithNULLs:(BOOL)includeNULLs; - (void)processResultIntoDataStorage:(MCPStreamingResult *)theResult; // Retrieving and setting table state |