aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPExportController.h
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2010-12-05 00:40:09 +0000
committerrowanbeentje <rowan@beent.je>2010-12-05 00:40:09 +0000
commit5d61e164670c386e73de8903dace40802f00fc00 (patch)
treeaeac970c32bc95ca0db8a6a8671a26d2cdb38bd7 /Source/SPExportController.h
parentc84d39d22cdc466b6a3d0c0e71966d074789b090 (diff)
downloadsequelpro-5d61e164670c386e73de8903dace40802f00fc00.tar.gz
sequelpro-5d61e164670c386e73de8903dace40802f00fc00.tar.bz2
sequelpro-5d61e164670c386e73de8903dace40802f00fc00.zip
Apply a tweaked version of a patch by Aaron Linville (http://www.linville.org/) to handle table linking in .dot exports on case-insensitive servers:
- Adds a new checkbox on the .dot export interface controlling the case sensitivty of link handling - Improve .dot export to use lowercase link references when the option is enabled, fixing .dot exports of table relations of table names with uppercase characters on case-insensitive servers - Check the server's case-sensitivity setting and use that to control the checkbox when using the export interface to select .dot export This addresses Issue #920.
Diffstat (limited to 'Source/SPExportController.h')
-rw-r--r--Source/SPExportController.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/SPExportController.h b/Source/SPExportController.h
index 24c30b39..ff5c65ba 100644
--- a/Source/SPExportController.h
+++ b/Source/SPExportController.h
@@ -108,6 +108,9 @@
IBOutlet NSButton *exportXMLIncludeStructure;
IBOutlet NSButton *exportXMLIncludeContent;
IBOutlet NSTextField *exportXMLNULLValuesAsTextField;
+
+ // Dot
+ IBOutlet NSButton *exportDotForceLowerTableNamesCheck;
/**
* Cancellation flag
@@ -204,6 +207,11 @@
*/
BOOL sqlPreviousConnectionEncodingViaLatin1;
+ /**
+ * The server's lower_case_table_names setting
+ */
+ NSInteger serverLowerCaseTableNameValue;
+
NSInteger heightOffset1;
NSInteger heightOffset2;
NSUInteger windowMinWidth;