0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

prisma.jsでmampのデータベース(mysql)に繋ぐ

Posted at

prisma.jsとは

node.jsベースのORMツール。
jsやtsでガリガリクエリを書いたりできます。

まだそんなに使い込めてないけれど、
mampのDB(mysql)と繋ぎ込む方法に少し迷ったので備忘録含めメモ。

そもそもprisma.jsでDBと接続するには

schema.prismaに接続DBを記載します。

datasource db {
  provider = "mysql"
  url      = env("DATABASE_URL")
}

上記に記載されているenvのDATABASE_URLは、.envに記載します。

DATABASE_URL="mysql://id:pass@localhost:port番号/DB名"

迷いポイント

mamp内のmysqlにターミナルから接続するには、
以下のmamp内の該当のフォルダに移動する必要があります。

/Applications/MAMP/Library/bin/

じゃあ、prismaでここに接続するには。。。?該当のフォルダに移動する必要があるのかな?
と少し迷いました。

結論

シンプルに、.envの下記に、該当のポートとDB、ID、passを記載すればokでした。

DATABASE_URL="mysql://root:root@localhost:8889/db名"
※ローカルのmampのid、パスはデフォルトでroot ,rootなことが多いようですが、変更されてる場合は適宜変更してください

難しく考えなくてもよかったのでした。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?