From c31900c9c909f42b722bfb03b164d548b602cdd4 Mon Sep 17 00:00:00 2001 From: wei <> Date: Mon, 8 Oct 2007 00:59:27 +0000 Subject: Fixed #716 --- framework/Data/Common/Pgsql/TPgsqlMetaData.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'framework/Data/Common/Pgsql/TPgsqlMetaData.php') diff --git a/framework/Data/Common/Pgsql/TPgsqlMetaData.php b/framework/Data/Common/Pgsql/TPgsqlMetaData.php index 9b6a5cdf..80c38d60 100644 --- a/framework/Data/Common/Pgsql/TPgsqlMetaData.php +++ b/framework/Data/Common/Pgsql/TPgsqlMetaData.php @@ -330,6 +330,7 @@ EOD; */ protected function getPrimaryKeys($tableName, $schemaName, $columnIndex) { + $index = join(', ', split(' ', $columnIndex)); $sql = <<getDbConnection()->createCommand($sql); $command->bindValue(':table', $tableName); $command->bindValue(':schema', $schemaName); - $command->bindValue(':columnIndex', join('\',\'', split(' ', $columnIndex))); - +// $command->bindValue(':columnIndex', join(', ', split(' ', $columnIndex))); $primary = array(); foreach($command->query() as $row) { -- cgit v1.2.3