diff options
author | stuconnolly <stuart02@gmail.com> | 2010-06-06 15:04:31 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-06-06 15:04:31 +0000 |
commit | 42781adb6cfa7f01f3763aade1b5043995930756 (patch) | |
tree | a1b38d9eab134fc59fe189f2e16cc823ef457361 /Source/SPExportInitializer.m | |
parent | 24c1421cd5ff96d567a64903f4134f3364a3dd9c (diff) | |
download | sequelpro-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/SPExportInitializer.m')
-rw-r--r-- | Source/SPExportInitializer.m | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/SPExportInitializer.m b/Source/SPExportInitializer.m index ce894628..0cfa88b1 100644 --- a/Source/SPExportInitializer.m +++ b/Source/SPExportInitializer.m @@ -540,6 +540,8 @@ // of table and table content exports. [xmlExporter setXmlTableName:[tablesListInstance tableName]]; + [xmlExporter setXmlNULLString:[exportXMLNULLValuesAsTextField stringValue]]; + // If required create separate files if ((exportSource == SPTableExport) && exportToMultipleFiles && (exportTableCount > 0)) { filename = [[exportPathField stringValue] stringByAppendingPathComponent:table]; |