diff options
author | rowanbeentje <rowan@beent.je> | 2009-04-06 23:54:25 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2009-04-06 23:54:25 +0000 |
commit | 6060ba57f5897bffdd35dbca438e6682b2960f75 (patch) | |
tree | 86c9d9e00b88f40c5f4cad36d050c07997f751b6 /Source/TableDocument.h | |
parent | 16aee03a9c48ffdaf33fd3f2c99f7b5a933ca0ee (diff) | |
download | sequelpro-6060ba57f5897bffdd35dbca438e6682b2960f75.tar.gz sequelpro-6060ba57f5897bffdd35dbca438e6682b2960f75.tar.bz2 sequelpro-6060ba57f5897bffdd35dbca438e6682b2960f75.zip |
- Select 'drop tables' option for MySQL export by default, to improve backup-type process and more closely match mysqldump, and correctly drop views
- Consistently set and restore the encoding appropriately for SQL import/export, and export to UTF8 files to correctly store all characters. Goes a good way towards addressing Issue #116.
Diffstat (limited to 'Source/TableDocument.h')
-rw-r--r-- | Source/TableDocument.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/TableDocument.h b/Source/TableDocument.h index f9334c39..5bb29a9f 100644 --- a/Source/TableDocument.h +++ b/Source/TableDocument.h @@ -89,6 +89,7 @@ NSMenu *selectEncodingMenu; BOOL _supportsEncoding; NSString *_encoding; + BOOL _encodingViaLatin1; NSToolbar *mainToolbar; NSToolbarItem *chooseDatabaseToolbarItem; @@ -131,6 +132,7 @@ - (void)setConnectionEncoding:(NSString *)mysqlEncoding reloadingViews:(BOOL)reloadViews; - (NSString *)databaseEncoding; - (NSString *)connectionEncoding; +- (BOOL)connectionEncodingViaLatin1; - (IBAction)chooseEncoding:(id)sender; - (BOOL)supportsEncoding; - (void)updateEncodingMenuWithSelectedEncoding:(NSString *)encoding; |