diff options
author | Bibiko <bibiko@eva.mpg.de> | 2009-10-29 15:08:52 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2009-10-29 15:08:52 +0000 |
commit | c965c29b6ccf39a96a192f5c4bfffa2c0620cefc (patch) | |
tree | ce050064795b51b7626b693225d21708884ac0f6 /Source/SPConstants.m | |
parent | a6c30d2c54b270b95b1abc59efef42b97174ed12 (diff) | |
download | sequelpro-c965c29b6ccf39a96a192f5c4bfffa2c0620cefc.tar.gz sequelpro-c965c29b6ccf39a96a192f5c4bfffa2c0620cefc.tar.bz2 sequelpro-c965c29b6ccf39a96a192f5c4bfffa2c0620cefc.zip |
• as default add the UTF-8 BOM (byte order marker) \xEFBBBF to a MySQL dump file
- this should simplify the loading of such a file in other text editors
- to avoid the writing of that BOM one can add to Sequel Pro's preference plist the boolean key “NoBOMforSQLdumpFile” and set it to YES
Note: If it turns out that this BOM causes problems one could add a checkbox for it to the NSSavePanel for instance later on.
Diffstat (limited to 'Source/SPConstants.m')
-rw-r--r-- | Source/SPConstants.m | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/SPConstants.m b/Source/SPConstants.m index 6e990cf4..62ae7b3b 100644 --- a/Source/SPConstants.m +++ b/Source/SPConstants.m @@ -95,3 +95,4 @@ NSString *SPQueryHistory = @"queryHistory"; NSString *SPDocumentTaskStartNotification = @"DocumentTaskStarted"; NSString *SPDocumentTaskEndNotification = @"DocumentTaskEnded"; NSString *SPDefaultFavorite = @"DefaultFavorite"; +NSString *SPNoBOMforSQLdumpFile = @"NoBOMforSQLdumpFile"; |