diff options
author | stuconnolly <stuart02@gmail.com> | 2010-02-06 17:32:46 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-02-06 17:32:46 +0000 |
commit | 71ece9db51ee88ecdd760079e86e3a5ff6decbba (patch) | |
tree | c63836786723ecf53b104ced37121a13931e319d /Source/TableDocument.m | |
parent | 2a400dbdf20613e17b5ae9642ea3dc564f7fff77 (diff) | |
download | sequelpro-71ece9db51ee88ecdd760079e86e3a5ff6decbba.tar.gz sequelpro-71ece9db51ee88ecdd760079e86e3a5ff6decbba.tar.bz2 sequelpro-71ece9db51ee88ecdd760079e86e3a5ff6decbba.zip |
Complete the implementation of the management of table triggers (accessible via Cmd+6). Note, that better support for entering the trigger statement in terms of escaping and delimiter support most likely needs to be added.
Diffstat (limited to 'Source/TableDocument.m')
-rw-r--r-- | Source/TableDocument.m | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/TableDocument.m b/Source/TableDocument.m index 3a9e8add..28a5bae8 100644 --- a/Source/TableDocument.m +++ b/Source/TableDocument.m @@ -664,6 +664,7 @@ [tableSourceInstance setConnection:mySQLConnection]; [tableContentInstance setConnection:mySQLConnection]; [tableRelationsInstance setConnection:mySQLConnection]; + [tableTriggersInstance setConnection:mySQLConnection]; [customQueryInstance setConnection:mySQLConnection]; [tableDumpInstance setConnection:mySQLConnection]; [exportControllerInstance setConnection:mySQLConnection]; |