如何使用 Oracle 模拟 PDO::getColumnData()?

How emulate PDO::getColumnData() using Oracle?

我有一个 vanilla PHP 7 应用程序(旨在)支持 MySQL、Postgres、SQL Server 和 Oracle。

我现在遇到了一个问题,因为除 Oracle (pdo_oci) 之外的所有软件都支持 getColumnData()

$statement   = $pdo->query('SELECT titulo, preco FROM livro');
$metadados   = $statement->getColumnMeta(0);

MySQL:

array(7) { ["native_type"]=> string(10) "VAR_STRING" ["pdo_type"]=> int(2) ["flags"]=> array(1) { [0]=> string(8) "not_null" } ["table"]=> string(5) "livro" ["name"]=> string(6) "titulo" ["len"]=> int(765) ["precision"]=> int(0) } 

Postgres:

array(8) { ["pgsql:oid"]=> int(1043) ["pgsql:table_oid"]=> int(16585) ["table"]=> string(5) "livro" ["native_type"]=> string(7) "varchar" ["name"]=> string(6) "titulo" ["len"]=> int(-1) ["precision"]=> int(259) ["pdo_type"]=> int(2) } 

SQL服务器:

array(8) { ["flags"]=> int(0) ["sqlsrv:decl_type"]=> string(7) "varchar" ["native_type"]=> string(6) "string" ["table"]=> string(0) "" ["pdo_type"]=> int(2) ["name"]=> string(6) "titulo" ["len"]=> int(255) ["precision"]=> int(0) }

有没有办法模拟其他驱动程序的类似结果,但使用 pdo_oci?

PHP 7.4 为此添加了对 PDO_OCI 的支持:bugs.php.net/bug.php?id=76908