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 でこれを行う方法は何ですか?
ありがとう、M.
上記のコメントで既に回答されているように (権限がないため): postgresql-simple はまったく使用せず、内部の postgresql テーブルでプレーン SQL を使用します。
select schemaname, tablename from pg_tables;
お騒がせしてすみません。