diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-02-18 12:54:38 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-02-18 12:54:38 +0000 |
commit | 1bde8b65c0213bcf0514c69f1b8b70a00971b573 (patch) | |
tree | b4a56556179011242f9309f8df1b21355bf4c11b /Source/SPFieldMapperController.h | |
parent | 299e8821edf9a1705a556c482a2a0ea4d6f9a0a8 (diff) | |
download | sequelpro-1bde8b65c0213bcf0514c69f1b8b70a00971b573.tar.gz sequelpro-1bde8b65c0213bcf0514c69f1b8b70a00971b573.tar.bz2 sequelpro-1bde8b65c0213bcf0514c69f1b8b70a00971b573.zip |
• CSV Import Field Mapper
- allow to define a list of global variables (incl. a true NULL value)
- such a global variable will be inserted into the mapped table target field for all rows imported
Diffstat (limited to 'Source/SPFieldMapperController.h')
-rw-r--r-- | Source/SPFieldMapperController.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/SPFieldMapperController.h b/Source/SPFieldMapperController.h index 5f55abe4..7632e179 100644 --- a/Source/SPFieldMapperController.h +++ b/Source/SPFieldMapperController.h @@ -43,6 +43,7 @@ IBOutlet id globalValuesSheet; IBOutlet NSButton *addGlobalValueButton; IBOutlet NSButton *removeGlobalValueButton; + IBOutlet NSButton *insertNULLValueButton; id theDelegate; id fieldMappingImportArray; @@ -89,6 +90,7 @@ - (NSString*)selectedImportMethod; - (NSArray*)fieldMappingArray; - (NSArray*)fieldMappingTableColumnNames; +- (NSArray*)fieldMappingGlobalValueArray; - (BOOL)importFieldNamesHeader; // IBAction methods @@ -103,6 +105,7 @@ - (IBAction)addGlobalValue:(id)sender; - (IBAction)removeGlobalValue:(id)sender; +- (IBAction)insertNULLValue:(id)sender; - (IBAction)closeGlobalValuesSheet:(id)sender; // Others |