我如何在 php pdo 中使用 \d 从正在进行的数据库中打印表格?

how can i use \d in php pdo to print the tables out of a database in progress?

\d 来自文本区域

$stmt = $conn->prepare($mytextarea);

    echo $mytextarea;
    if($stmt->execute()== true)
        {
            echoTableFromResults($stmt);
        } 

        $conn = null;

我希望能够从我的网站打印我的 progresql 数据库中的表,但我不知道如何获得结果,因为 \d 有效。

SELECT tablename FROM pg_catalog.pg_tables where tableowner ='username'

找到答案了,谢谢