Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我与 postgresql-simple 连接,需要获取当前数据库中的表列表。
在 postgresql-simple 中执行此操作的方法是什么?
谢谢,米。
正如上面评论中已经回答的那样(由于缺乏特权):根本不要使用 postgresql-simple,而是在内部 postgresql 表上使用普通 SQL:
select schemaname, tablename from pg_tables;
对不起噪音。