summaryrefslogtreecommitdiff
path: root/framework/Data/Common
diff options
context:
space:
mode:
authorwei <>2007-04-22 00:37:44 +0000
committerwei <>2007-04-22 00:37:44 +0000
commit758c9ced5f5cd5d3c8a724bded78f90b8322e23f (patch)
tree046bc1002002d8161d97caf2db4b13d1e5d9bcd2 /framework/Data/Common
parent38c18b2d740f61e342f00bc33791f0f3c014e126 (diff)
Minor change to Mysql metadata
Diffstat (limited to 'framework/Data/Common')
-rw-r--r--framework/Data/Common/Mysql/TMysqlMetaData.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/framework/Data/Common/Mysql/TMysqlMetaData.php b/framework/Data/Common/Mysql/TMysqlMetaData.php
index ebe851b6..e4d043ed 100644
--- a/framework/Data/Common/Mysql/TMysqlMetaData.php
+++ b/framework/Data/Common/Mysql/TMysqlMetaData.php
@@ -270,6 +270,7 @@ EOD;
$sql = "SHOW CREATE TABLE `{$schemaName}`.`{$tableName}`";
else
$sql = "SHOW CREATE TABLE `{$tableName}`";
+ $this->getDbConnection()->cancel(); //remove any existing prepared statement
$command = $this->getDbConnection()->createCommand($sql);
$result = $command->queryRow();
return $result['Create Table'];