douliangli6407 2015-01-21 13:36
浏览 16
已采纳

如何在一个php页面中创建2个或更多PDO对象?

Hi I have a code which there is a pdo object like this :

$db = new PDO('mysql:host='.$servername.'; dbname='.$db.';charset=utf8' , $db_username, $db_password);

thats good but When I want to creat another PDO object wiht a different name i into same page like this :

$dbh = new PDO('mysql:host='.$servername.'; dbname='.$db.';charset=utf8' , $db_username, $db_password);
$notification_array = $dbh -> prepare("select * from `machines`ORDER BY id DESC limit 51 ");

php says :

 Catchable fatal error: Object of class PDO could not be converted to string

I thoght maybe I must make last PDO object ($db) NULL ! like this :

$db = null;
$dbh = new PDO('mysql:host='.$servername.'; dbname='.$db.';charset=utf8' , $db_username, $db_password);
$notification_array = $dbh -> prepare("select * from `machines`ORDER BY id DESC limit 51 ");

but by this way my code does not work and does not read table how can I create 2 simllar Pdo objects in a page ? I need it to keep them next to eachother

  • 写回答

2条回答 默认 最新

  • duanlao1552 2015-01-21 13:47
    关注

    in $db = new PDO('mysql:host='.$servername.'; dbname='.$db.';charset=utf8' , $db_username, $db_password); you are using the same variable name $db for the pdo object and for the dbname You should use dbname='.$dbname for example.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥30 关于用python写支付宝扫码付异步通知收不到的问题
  • ¥50 vue组件中无法正确接收并处理axios请求
  • ¥15 隐藏系统界面pdf的打印、下载按钮
  • ¥15 MATLAB联合adams仿真卡死如何解决(代码模型无问题)
  • ¥15 基于pso参数优化的LightGBM分类模型
  • ¥15 安装Paddleocr时报错无法解决
  • ¥15 python中transformers可以正常下载,但是没有办法使用pipeline
  • ¥50 分布式追踪trace异常问题
  • ¥15 人在外地出差,速帮一点点
  • ¥15 如何使用canvas在图片上进行如下的标注,以下代码不起作用,如何修改