我正在尝试测试 redbeanphp 并尝试使用我的 mac 在 xampp 上实现它。但是,我的 pdo 似乎有问题。我已经检查过使用 phpinfo 设置了 mysql 的 pdo 驱动程序。任何人都可以就为什么会发生这种情况提供一些见解或方向。
提前致谢!
我正在使用的代码是:
<?php
require('rb.php');
R::setup('mysql:host=localhost;dbname=hoodajax');
$book = R::dispense( 'book' );
$book->title = 'Boost development with RedBeanPHP';
$book->author = 'Charles Xavier';
$id = R::store($book);
$book = R::load('book', $id);
echo $book->title;
R::close();
?>
正在显示的错误是:
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42000] [1044] Access denied for
user ''@'localhost' to database 'hoodajax'' in /Applications/XAMPP/xamppfiles/htdocs/ajax/rb.php:613
Stack trace: #0 /Applications/XAMPP/xamppfiles/htdocs/ajax/rb.php(613):
PDO->__construct('mysql:host=127....', NULL, NULL, Array) #1
/Applications/XAMPP/xamppfiles/htdocs/ajax/rb.php(790): RedBean_Driver_PDO->connect() #2
/Applications/XAMPP/xamppfiles/htdocs/ajax/rb.php(1755): RedBean_Driver_PDO->Escape('book') #3
/Applications/XAMPP/xamppfiles/htdocs/ajax/rb.php(2374): RedBean_Adapter_DBAdapter->escape('book') #4
/Applications/XAMPP/xamppfiles/htdocs/ajax/rb.php(2334): RedBean_QueryWriter_AQueryWriter->check('book')
#5 /Applications/XAMPP/xamppfiles/htdocs/ajax/rb.php(4594):
RedBean_QueryWriter_AQueryWriter->safeTable('book', true) #6
/Applications/XAMPP/xamppfiles/htdocs/ajax/rb.php(4563):
RedBean_OODB->storeBean(Object(RedBean_OODBBean)) #7
/Applications/XAMPP/xamppfiles/htdocs/ajax/rb.php(6439): RedBean_OODB->store(Ob in
/Applications/XAMPP/xamppfiles/htdocs/ajax/rb.php on line 613