diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-10-23 22:18:53 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-10-23 22:18:53 +0000 |
commit | c965b60b6ec45f56aa406296b5c35f48360f175a (patch) | |
tree | 68570c4682d74094247970ff6b1513bd07cefd95 /Source/SPFieldMapperController.h | |
parent | a24ef7bf96e86d8e9ad7ee3ac9147dfca5cb810d (diff) | |
download | sequelpro-c965b60b6ec45f56aa406296b5c35f48360f175a.tar.gz sequelpro-c965b60b6ec45f56aa406296b5c35f48360f175a.tar.bz2 sequelpro-c965b60b6ec45f56aa406296b5c35f48360f175a.zip |
• CSV Import Field Mapper Sheet
- added the possibility to apply any sql function while importing set via "Add value or expression" sheet eg concat('$2', '$1', length('$3')) whereby $1 $2 $3 are the placeholder for the csv file columns 1 2 3 [first column starts with 1]
• fixed ' escaping issue in MCPConnection
Diffstat (limited to 'Source/SPFieldMapperController.h')
-rw-r--r-- | Source/SPFieldMapperController.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/SPFieldMapperController.h b/Source/SPFieldMapperController.h index 33b4a400..8a70df90 100644 --- a/Source/SPFieldMapperController.h +++ b/Source/SPFieldMapperController.h @@ -62,6 +62,8 @@ IBOutlet NSButton *removeGlobalValueButton; IBOutlet NSButton *insertNULLValueButton; IBOutlet id replaceAfterSavingCheckBox; + IBOutlet NSPopUpButton *insertPullDownButton; + IBOutlet NSMenu *recentGlobalValueMenu; IBOutlet id ignoreCheckBox; IBOutlet id ignoreUpdateCheckBox; @@ -175,6 +177,8 @@ - (IBAction)insertNULLValue:(id)sender; - (IBAction)closeGlobalValuesSheet:(id)sender; - (IBAction)advancedCheckboxValidation:(id)sender; +- (IBAction)insertPulldownValue:(id)sender; +- (IBAction)insertRecentGlobalValue:(id)sender; - (IBAction)newTable:(id)sender; - (IBAction)newTableInfo:(id)sender; |