pdo mysql select语句在一个表上工作,而在其他表上不起作用
我有一个奇怪的问题。 我正在使用 PDO 准备好的语句。
我有两个表,名称分别为 TABLE1 和 TABLE2。 TABLE1 是从另一个数据库复制的及其数据。 TABLE2 是使用 phpmyAdmin 创建的, 两个表都在同一个数据库中。
我正在使用 PDO 准备运行一个 Select 语句,它在 TABLE1(从另一个数据库复制)上工作正常,但在 TABLE2(使用 phpmyadmin 创建)上不起作用。没有错误,也没有异常。奇怪的?
PDO 准备语句是否需要任何特定类型的表?或者其他我不知道的设置?
I am having a strange problem.
I am using PDO prepared statement.
I have two tables with the name of TABLE1 AND TABLE2.
TABLE1 is copied from another db with its data.
TABLE2 is created using phpmyAdmin,
Both Tables are in the same Database.
I am running a Select statement using PDO prepare and its working fine on TABLE1 (which is copied from another DB) while it is not working on TABLE2 (which is created using phpmyadmin). No error and No exception. Strange?
does PDO prepare statement requires any specific type of table? or another setting which i don't know?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我自己找到解决方案。实际上,pdo 需要完全限定名称来访问使用 phpmyadmin 创建的表。
因此使用以下查询运行 select 语句。
SELECT * FROM DB1.TABLE2 (成功返回结果集)
虽然我可以从另一个数据库访问我的复制表(TABLE1)而不使用 DB1。
SELECT * FROM TABLE1(成功返回结果集)
干杯!
I find the solution myself. actually pdo requires fully qualified name to access table which was created using phpmyadmin.
so run the select statement using Following queries.
SELECT * FROM DB1.TABLE2 (successfully return the result set)
While I can access my Copied table (TABLE1) from another database without using DB1.
SELECT * FROM TABLE1 (successfully return the result set)
Cheers!