diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-03-22 10:12:59 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-03-22 10:12:59 +0000 |
commit | f4e32dd6a24793454e0af44a4429cdd9ca737724 (patch) | |
tree | 5c8964aa14c0885e10b6d45a0efa3503a5b28590 /Source/TableDump.h | |
parent | 1c037fd0f3014833dd3c47d5c1b30d0e525536db (diff) | |
download | sequelpro-f4e32dd6a24793454e0af44a4429cdd9ca737724.tar.gz sequelpro-f4e32dd6a24793454e0af44a4429cdd9ca737724.tar.bz2 sequelpro-f4e32dd6a24793454e0af44a4429cdd9ca737724.zip |
• fixed bug while CSV import
- calculate correctly whether global variables are used or not to avoid a crash if the number of columns in the csv file differs
Diffstat (limited to 'Source/TableDump.h')
-rw-r--r-- | Source/TableDump.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/TableDump.h b/Source/TableDump.h index 8f785f72..dc5af40f 100644 --- a/Source/TableDump.h +++ b/Source/TableDump.h @@ -106,6 +106,7 @@ typedef enum _SPExportModes { NSArray *fieldMappingTableColumnNames; NSArray *fieldMappingArray; NSArray *fieldMappingGlobalValueArray; + NSArray *fieldMappingTableDefaultValues; NSArray *fieldMapperOperator; NSString *selectedTableTarget; NSString *selectedImportMethod; @@ -113,6 +114,7 @@ typedef enum _SPExportModes { NSString *csvImportHeaderString; NSString *csvImportTailString; NSInteger fieldMapperSheetStatus; + NSInteger numberOfImportDataColumns; BOOL fieldMappingArrayHasGlobalVariables; BOOL csvImportMethodHasTail; BOOL insertRemainingRowsAfterUpdate; |