aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPDotExporter.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/SPDotExporter.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/SPDotExporter.h')
-rw-r--r--Source/SPDotExporter.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/Source/SPDotExporter.h b/Source/SPDotExporter.h
index 5de22927..4a962c7b 100644
--- a/Source/SPDotExporter.h
+++ b/Source/SPDotExporter.h
@@ -42,9 +42,11 @@
NSArray *dotExportTables;
NSString *dotExportCurrentTable;
-
+
+ BOOL dotForceLowerTableNames;
+
SPTableData *dotTableData;
-
+
NSString *dotDatabaseHost;
NSString *dotDatabaseName;
NSString *dotDatabaseVersion;
@@ -66,6 +68,11 @@
@property(readwrite, retain) NSString *dotExportCurrentTable;
/**
+ * @property dotForceLowerTableNames dotForceLowerTableNames Force lowercase table names
+ */
+@property(readwrite, assign) BOOL dotForceLowerTableNames;
+
+/**
* @property dotTableData Table data
*/
@property(readwrite, retain) SPTableData *dotTableData;