aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPSQLExporter.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2009-10-06 00:44:48 +0000
committerstuconnolly <stuart02@gmail.com>2009-10-06 00:44:48 +0000
commit27eba105aef0a612e5a91af02a0b87b99b06ab78 (patch)
treec7324f1156d602cb798a4d4ae8ada3b4907f5bcf /Source/SPSQLExporter.m
parent29cfd02f7828d92136fce32e0cb888e9dd9fd2ba (diff)
downloadsequelpro-27eba105aef0a612e5a91af02a0b87b99b06ab78.tar.gz
sequelpro-27eba105aef0a612e5a91af02a0b87b99b06ab78.tar.bz2
sequelpro-27eba105aef0a612e5a91af02a0b87b99b06ab78.zip
More export redesign work. CSV data generation is currently working using the old non-streaming code, but does not yet write to any files. Please note that this is still very much a work in progress.
Diffstat (limited to 'Source/SPSQLExporter.m')
-rw-r--r--Source/SPSQLExporter.m18
1 files changed, 18 insertions, 0 deletions
diff --git a/Source/SPSQLExporter.m b/Source/SPSQLExporter.m
index 39653abc..db9e4532 100644
--- a/Source/SPSQLExporter.m
+++ b/Source/SPSQLExporter.m
@@ -27,4 +27,22 @@
@implementation SPSQLExporter
+/**
+ * Start the SQL data conversion process. This method is automatically called when an instance of this object
+ * is placed on an NSOperationQueue. Do not call it directly as there is no manual multithreading.
+ */
+- (void)main
+{
+ @try {
+ NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
+
+
+
+ [pool release];
+ }
+ @catch (NSException *e) {
+
+ }
+}
+
@end