summaryrefslogtreecommitdiff
path: root/framework/Data/Common/Mysql/TMysqlTableInfo.php
diff options
context:
space:
mode:
authorwei <>2007-05-03 01:37:21 +0000
committerwei <>2007-05-03 01:37:21 +0000
commitea9e7eb535b460218b693d4e5fec80297eb3e360 (patch)
tree8dc4f4ac6d29989ba912a6013ffa6590c71e857d /framework/Data/Common/Mysql/TMysqlTableInfo.php
parent1ae09931b2572d9c3067c99f841a60cb3330b3f3 (diff)
Add northwind db demo.
Diffstat (limited to 'framework/Data/Common/Mysql/TMysqlTableInfo.php')
-rw-r--r--framework/Data/Common/Mysql/TMysqlTableInfo.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/framework/Data/Common/Mysql/TMysqlTableInfo.php b/framework/Data/Common/Mysql/TMysqlTableInfo.php
index 9bc01717..3584bb3b 100644
--- a/framework/Data/Common/Mysql/TMysqlTableInfo.php
+++ b/framework/Data/Common/Mysql/TMysqlTableInfo.php
@@ -44,6 +44,16 @@ class TMysqlTableInfo extends TDbTableInfo
else
return '`'.$this->getTableName().'`';
}
+
+ /**
+ * @param TDbConnection database connection.
+ * @return TDbCommandBuilder new command builder
+ */
+ public function createCommandBuilder($connection)
+ {
+ Prado::using('System.Data.Common.Mysql.TMysqlCommandBuilder');
+ return new TMysqlCommandBuilder($connection,$this);
+ }
}
?> \ No newline at end of file