diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-10-09 19:40:48 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-10-09 19:40:48 +0000 |
commit | 5841f3d9952a1c4d7c73d39e369ec7c78effb356 (patch) | |
tree | 55c3a9cb7ef8bcd73a6e3eed24a39677d5f07953 /Source/SPDataImport.h | |
parent | 61a58f40267ee3d83a5c8135261cd0b3cab8ff55 (diff) | |
download | sequelpro-5841f3d9952a1c4d7c73d39e369ec7c78effb356.tar.gz sequelpro-5841f3d9952a1c4d7c73d39e369ec7c78effb356.tar.bz2 sequelpro-5841f3d9952a1c4d7c73d39e369ec7c78effb356.zip |
• CSV Import (incl. import from clipboard)
- if mapped target table field is of type GEOMETRY import csv data via GeomFromText()
- replaced succeeding appendString lines by appendFormat since tests have shown that allocating memory once is faster than do it several times
Diffstat (limited to 'Source/SPDataImport.h')
-rw-r--r-- | Source/SPDataImport.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/SPDataImport.h b/Source/SPDataImport.h index 97ba134f..6b4a622b 100644 --- a/Source/SPDataImport.h +++ b/Source/SPDataImport.h @@ -101,6 +101,10 @@ BOOL progressCancelled; BOOL _mainNibLoaded; + NSDictionary *targetTableDetails; + NSMutableArray *geometryFields; + NSMutableIndexSet *geometryFieldsMapIndex; + NSSavePanel *currentExportPanel; } |