diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-10-31 17:41:19 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-10-31 17:41:19 +0000 |
commit | 7fbc246fbcbfbe819c27d561650aacd312f2d6b0 (patch) | |
tree | 5238ce87303e0951e3aaf8fefc6816b9896d78d4 /Source/SPDataImport.h | |
parent | e3f9028ab739d9e973dd97345605c2abc2a79739 (diff) | |
download | sequelpro-7fbc246fbcbfbe819c27d561650aacd312f2d6b0.tar.gz sequelpro-7fbc246fbcbfbe819c27d561650aacd312f2d6b0.tar.bz2 sequelpro-7fbc246fbcbfbe819c27d561650aacd312f2d6b0.zip |
• CSV import now supports to import sequences of 0 and 1 into BIT fields
• fixed several issues while importing a CSV file if this file contains empty lines or if a line has less columns as header
- fixed issue for matching header names
- fixed issue for user-defined SQL functions while importing; in such a case set the value to @"" to get the defaults
Diffstat (limited to 'Source/SPDataImport.h')
-rw-r--r-- | Source/SPDataImport.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/SPDataImport.h b/Source/SPDataImport.h index 28bf8b04..8ea49fa1 100644 --- a/Source/SPDataImport.h +++ b/Source/SPDataImport.h @@ -103,6 +103,8 @@ NSDictionary *targetTableDetails; NSMutableArray *geometryFields; NSMutableIndexSet *geometryFieldsMapIndex; + NSMutableArray *bitFields; + NSMutableIndexSet *bitFieldsMapIndex; NSSavePanel *currentExportPanel; } |