0
我想使用Doctrine DBAL,我從網站下載了DBAL文件夾。並將該文件夾放在我的服務器上。 ,然後將此代碼寫入我的文件。想使用Doctrine DBAL
use Doctrine\Common\ClassLoader;
require 'Doctrine/Common/ClassLoader.php';
$classLoader = new ClassLoader('Doctrine', 'Doctrine');
$classLoader->register();
$config = new \Doctrine\DBAL\Configuration();
//..
$connectionParams = array(
'dbname' => 'mydb',
'user' => 'user ',
'password' => 'password',
'host' => 'host',
'driver' => 'pdo_mysql',
);
$conn = DriverManager::getConnection($connectionParams);
$stmt = $conn->query($select_resellerData);
$fetch = $stmt->fetch();
print_r($fetch);
給我這個錯誤。
Parse error: syntax error, unexpected T_STRING, expecting T_CONSTANT_ENCAPSED_STRING or '(' in /home/abhijitnair/sandbox/reseller dashboard/manual_population/populatenew.php on line 3
請建議我需要使用dbal。
感謝
是的,這是它,但現在我不能在5.2.11中使用Doctrine DBAL?我在公司,所以我如何更改運行的產品版本? – XMen 2011-03-15 08:59:47