4
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 3 years have passed since last update.

[初心者向け][sqlite3]なぜだ。コマンドでsqlite使えない。

Posted at

#sqliteコマンド使えんやんけ!

題名のとおり、laravelを安定の青本で勉強していた際に、データベースの部分でsqlite3を使う機会がありました。
その際になぜかsqliteコマンドが反映されないことがあったので、メモ程度に残させていただきます。

##環境
● Windows10
● sqlite(ダウンロード方法は省きます。)
※Mac環境の方は、元から搭載されているらしく関係ないそうです。

##今回しようとしていたこと

cmd.
sqlite3 database.sqlite

これを実行するも
「sqlite3」は使用できません。
よし、ググってみましょう。

##解決方法

###原因

「コマンドラインツールは別アーカイブになっています。sqlite-tools-win32-x86-なんとか.zipをダウンロードして取り出してください。」

とのことでsqlite-tools-win32-x86-なんとかをダウンロードし、コマンドたたいたところ、

cmd.
sqlite3 database.sqlite
SQLite version *****
Enter ".help" for usage hints.

お、できました。

##まとめ
とてもしょうもないのですが、上記の通りコマンドは別アーカイブらしいので、コマンドのもダウンロードする必要があるそうです。
あまり記事がなさそうだったので、投稿してみました。少しでも参考になれば幸いです。

参考記事

4
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
4
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?