有没有办法在php-mssql
没有 PDO 连接的情况下使用 DRIVER连接 sqlserver symfony
?
问问题
710 次
1 回答
0
我相信您需要为此创建自己的驱动程序。
定义了abstract class Doctrine_Connection
连接方式。在这个类中,在“connect”方法中,您可以阅读:
if (extension_loaded('pdo')) {
find valid driver and load into PDO (calling PDO::getAvailableDrivers())
$found = true;
}
如果未找到驱动程序(例如,如果您提交这样的 dsn mssql_own:host=localhost;dbname=localdb
),则 Doctrine_Connection 会:
$class = 'Doctrine_Adapter_' . ucwords("mssql_own");
if (class_exists($class)) {
$this->dbh = new $class($this->options['dsn'], $this->options['username'], $this->options['password'], $this->options);<br/><br/>
} else {
throw new Doctrine_Connection_Exception("Couldn't locate driver named " . "mssql_own");
}
您需要编写以我的示例“Doctrine_Adapter_Mssql_own”命名的此类并与 php-mssql 建立连接。
我希望它有帮助...
于 2013-04-26T13:53:17.207 回答