macからherokuのPostgreSQLのデータベースに接続するには
ローカルにPostgreSQLをインストールする
macにhomebrewでPostgreSQLをインストールします。
brew install postgresql
インストールされたPostgreSQLのバージョンを確認します。
postgres --version
postgres (PostgreSQL) 14.2
herokuのPostgreSQLに接続する
次のコマンドで接続できます。
heroku pg:psql -a <アプリケーション名>
--> Connecting to postgresql-xxxxxxxxxxx-00000
psql (14.2)
SSL connection (protocol: TLSv1.3, cipher: TLS_AES_256_GCM_SHA384, bits: 256, compression: off)
Type "help" for help.
<アプリケーション名>::DATABASE=>
SQLを実行してみます。
<アプリケーション名>::DATABASE=>select name, email from users;
name | email
----------+---------------------------
XXXXXXXX | xxxxxxxxxx.xxxx@gmail.com
(1 row)