需要帮助确定哪些 PDO 数据库驱动程序包含 information_schema db (PHP)

发布于 2024-11-03 15:22:36 字数 319 浏览 0 评论 0原文

我正在尝试创建一个通用的扩展 PDO 类。其中一种方法从数据库模式中提取数据,如下所示。

SELECT column_name FROM information_schema.columns WHERE table_name = ?

我试图找出哪些 PDO 数据库驱动程序不适用于此类查询。我读到 information_schema 是一个 ansi 标准,但某些数据库系统尚未实现它。我只熟悉mysql,但需要使类敏捷,因为将来可能会使用其他数据库。

任何有关哪些数据库系统使用 information_schema 的信息将不胜感激。

I am trying to make a generic extended PDO class. One of the methods pulls data from the db schema like so.

SELECT column_name FROM information_schema.columns WHERE table_name = ?

I am trying to figure out which of PDO's database drivers will this type of query not work with. I have read that information_schema is an ansi standard, but some database systems have not implimented it. I am only familiar with mysql, but need to make the class agile because other dbs may be used in the future.

Any info about which database systems use information_schema would be greatly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

预谋 2024-11-10 15:22:36

我正在尝试找出哪些 PDO 数据库驱动程序不适用于此类查询

这与 PDO 无关,与底层数据库引擎有关。

PostgreSQLMySQLMSSQL 支持 information_schema。 Oracle 和 SQLite 没有,这意味着您需要特定于这些数据库引擎的代码来查询表信息。

I am trying to figure out which of PDO's database drivers will this type of query not work with

This has nothing to do with PDO and everything to do with the underlying database engine.

PostgreSQL, MySQL and MSSQL support information_schema. Oracle and SQLite don't, meaning you'd need code specific to those database engines to query table information.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文