aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPExportInitializer.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2010-06-13 14:22:16 +0000
committerstuconnolly <stuart02@gmail.com>2010-06-13 14:22:16 +0000
commitebd964e9a6d4b5975a806a4354f4df5ab28146d0 (patch)
tree7d7ec1977ee7059f041bf74b7e699550707e49e4 /Source/SPExportInitializer.m
parentf286f3f05162e663fb6bc6abaf2a08b1e02d1d86 (diff)
downloadsequelpro-ebd964e9a6d4b5975a806a4354f4df5ab28146d0.tar.gz
sequelpro-ebd964e9a6d4b5975a806a4354f4df5ab28146d0.tar.bz2
sequelpro-ebd964e9a6d4b5975a806a4354f4df5ab28146d0.zip
Exporter ehancements:
- Make sure the export button is disabled when the global structure, content and drop options are enabled, but the desellect all button is checked. - Replace the export dialog toolbar with a tabview, reducing the dialogs overall size. - Add the option to SQL dumps to specify when a new INSERT statement should be created, either after a certain amount of data or after a specific number of rows (defaults to every 250KiB). Known issue: incorrect VALUES clause generation of last row when creating a new INSERT after a specific number of rows.
Diffstat (limited to 'Source/SPExportInitializer.m')
-rw-r--r--Source/SPExportInitializer.m3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/SPExportInitializer.m b/Source/SPExportInitializer.m
index c0d6e043..d912f87a 100644
--- a/Source/SPExportInitializer.m
+++ b/Source/SPExportInitializer.m
@@ -270,6 +270,9 @@
[sqlExporter setSqlOutputCompressFile:[exportCompressOutputFile state]];
[sqlExporter setSqlOutputIncludeErrors:[exportSQLIncludeErrorsCheck state]];
+ [sqlExporter setSqlInsertAfterNValue:[exportSQLInsertNValueTextField integerValue]];
+ [sqlExporter setSqlInsertDivider:[exportSQLInsertDividerPopUpButton indexOfSelectedItem]];
+
// Set generic properties
[sqlExporter setConnection:connection];
[sqlExporter setExportOutputEncoding:[connection encoding]];