aboutsummaryrefslogtreecommitdiffstats
path: root/Source/TableDump.m
diff options
context:
space:
mode:
authorBibiko <bibiko@eva.mpg.de>2010-03-02 13:45:46 +0000
committerBibiko <bibiko@eva.mpg.de>2010-03-02 13:45:46 +0000
commit300e2cb06db621fb7f651b11e5e1c6bb2f6fbd87 (patch)
tree70c557c2cb9560964fb1b4b6991178a7d60ecf22 /Source/TableDump.m
parentecb95326374568a3cac41ed44c6c8aace0b26877 (diff)
downloadsequelpro-300e2cb06db621fb7f651b11e5e1c6bb2f6fbd87.tar.gz
sequelpro-300e2cb06db621fb7f651b11e5e1c6bb2f6fbd87.tar.bz2
sequelpro-300e2cb06db621fb7f651b11e5e1c6bb2f6fbd87.zip
• CSV Field Mapper
- REPLACE as import method is only enabled if target table has a primary key or at least one field which is set to unique - if user set a field to "Ignore Field" display as "import value" the field's default value greyed - some minor code cosmetics
Diffstat (limited to 'Source/TableDump.m')
-rw-r--r--Source/TableDump.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/TableDump.m b/Source/TableDump.m
index 5385a053..4d6e93ef 100644
--- a/Source/TableDump.m
+++ b/Source/TableDump.m
@@ -953,7 +953,7 @@
[singleProgressSheet makeKeyWindow];
// Set up the field names import string for INSERT or REPLACE INTO
- [insertBaseString appendFormat:@"%@", csvImportHeaderString];
+ [insertBaseString appendString:csvImportHeaderString];
[insertBaseString appendString:[selectedTableTarget backtickQuotedString]];
[insertBaseString appendString:@" ("];
insertBaseStringHasEntries = NO;