aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPXMLExporter.h
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2010-06-06 15:04:31 +0000
committerstuconnolly <stuart02@gmail.com>2010-06-06 15:04:31 +0000
commit42781adb6cfa7f01f3763aade1b5043995930756 (patch)
treea1b38d9eab134fc59fe189f2e16cc823ef457361 /Source/SPXMLExporter.h
parent24c1421cd5ff96d567a64903f4134f3364a3dd9c (diff)
downloadsequelpro-42781adb6cfa7f01f3763aade1b5043995930756.tar.gz
sequelpro-42781adb6cfa7f01f3763aade1b5043995930756.tar.bz2
sequelpro-42781adb6cfa7f01f3763aade1b5043995930756.zip
On the XML export dialog add the option to specify the placeholder of exported NULL values. Fixes issue #718.
Diffstat (limited to 'Source/SPXMLExporter.h')
-rw-r--r--Source/SPXMLExporter.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/SPXMLExporter.h b/Source/SPXMLExporter.h
index a9e6c2dd..f80aacc6 100644
--- a/Source/SPXMLExporter.h
+++ b/Source/SPXMLExporter.h
@@ -51,6 +51,11 @@
* Table name
*/
NSString *xmlTableName;
+
+ /**
+ * XML NULL string
+ */
+ NSString *xmlNULLString;
}
@property(readwrite, assign) NSObject *delegate;
@@ -58,6 +63,8 @@
@property(readwrite, retain) NSArray *xmlDataArray;
@property(readwrite, retain) NSString *xmlTableName;
+@property(readwrite, retain) NSString *xmlNULLString;
+
/**
* Initialise an instance of SPXMLExporter using the supplied delegate.
*