diff options
author | rowanbeentje <rowan@beent.je> | 2010-05-27 00:47:02 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2010-05-27 00:47:02 +0000 |
commit | dedb2635efe436b51b6917404ad205b4491d3d01 (patch) | |
tree | 3b0f0cd0fa352a04f0a1d2c4ab0f83dd2364d2eb /Source/SPSQLExporter.h | |
parent | f36df95c5c983e255f9c4ab79b76c3e4a132a974 (diff) | |
download | sequelpro-dedb2635efe436b51b6917404ad205b4491d3d01.tar.gz sequelpro-dedb2635efe436b51b6917404ad205b4491d3d01.tar.bz2 sequelpro-dedb2635efe436b51b6917404ad205b4491d3d01.zip |
- Fix SQL export progress display
- When compression is enabled, use .sql.gz as file extension instead of .gz
Diffstat (limited to 'Source/SPSQLExporter.h')
-rw-r--r-- | Source/SPSQLExporter.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Source/SPSQLExporter.h b/Source/SPSQLExporter.h index 6b4702ce..735056aa 100644 --- a/Source/SPSQLExporter.h +++ b/Source/SPSQLExporter.h @@ -88,7 +88,12 @@ * Compress output */ BOOL sqlOutputCompressFile; - + + /** + * Number of tables processed by exporter + */ + NSUInteger sqlCurrentTableExportIndex; + /** * Table information */ @@ -111,7 +116,9 @@ @property(readwrite, assign) BOOL sqlOutputIncludeErrors; @property(readwrite, assign) BOOL sqlOutputCompressFile; -@property (readwrite, retain) NSDictionary *sqlTableInformation; +@property(readwrite, assign) NSUInteger sqlCurrentTableExportIndex; + +@property(readwrite, retain) NSDictionary *sqlTableInformation; /** * Initialise an instance of SPSQLExporter using the supplied delegate. |