diff options
author | wei <> | 2007-04-22 00:37:44 +0000 |
---|---|---|
committer | wei <> | 2007-04-22 00:37:44 +0000 |
commit | 758c9ced5f5cd5d3c8a724bded78f90b8322e23f (patch) | |
tree | 046bc1002002d8161d97caf2db4b13d1e5d9bcd2 /framework/Data/Common/Mysql | |
parent | 38c18b2d740f61e342f00bc33791f0f3c014e126 (diff) |
Minor change to Mysql metadata
Diffstat (limited to 'framework/Data/Common/Mysql')
-rw-r--r-- | framework/Data/Common/Mysql/TMysqlMetaData.php | 1 |
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'];
|