1

我在 Postgresql 9.0 中有一个数据库,我正在尝试使用 Doctrine ORM 1.2 从 db 生成模型。

这是我的代码:

<?php
require_once 'Doctrine.php';
spl_autoload_register(array('Doctrine', 'autoload'));
spl_autoload_register(array('Doctrine_Core', 'modelsAutoload'));
$manager = Doctrine_Manager::getInstance(); 
$conn = Doctrine_Manager::connection('pgsql://postgres:secret@192.168.1.108/erp','doctrine');
$conn->setAttribute( Doctrine_Core::ATTR_PORTABILITY, Doctrine_Core::PORTABILITY_FIX_CASE | PORTABILITY_RTM);
$conn->setAttribute( Doctrine_Core::ATTR_QUOTE_IDENTIFIER, true);
$manager->setAttribute(Doctrine_Core::ATTR_AUTO_ACCESSOR_OVERRIDE, true);
Doctrine_Core::loadModels('../application/models');
Doctrine_Core::generateModelsFromDb('../application/models', array('doctrine'), array('generateTableClasses' => true));
?>

当我运行该页面时,我收到此错误:

Fatal error: Uncaught exception 'Doctrine_Connection_Pgsql_Exception' with message 'SQLSTATE[42P01]: Undefined table: 7 ERROR: missing FROM-clause entry for table "t" LINE 6: ... t.typtype ... ^. Failing Query: "SELECT ordinal_position as attnum, column_name as field, udt_name as type, data_type as complete_type, t.typtype AS typtype, is_nullable as isnotnull, column_default as default, ( SELECT 't' in D:\Doctrine-1.2.3\Doctrine-1.2.3\Doctrine\Connection.php on line 1082

值得一提的是,这段代码非常适用于 mysql(通过在连接 ofcurse 中使用 mysql:// ...),但在使用 postgresql 9.0 时遇到了麻烦。

任何想法?

4

2 回答 2

1

听起来像 Doctrine 中的这个错误:http: //www.doctrine-project.org/jira/browse/DC-919

于 2010-11-21T07:19:31.343 回答
0

尝试在表名或列名中添加引号。

导出表格时找到正确的命名。

我的问题是有人在表名中添加了引号。

$sql='SELECT "id","name",
   ("f1"=\'aaa\' OR
   "f1"=\'bbb\') AS "myflag"
   FROM "mytable"';
于 2011-12-07T23:06:27.793 回答