Reputation: 21
i am trying to install and run SQLite or SQL on my mac. I installed the application, but it's not giving me the option to run it. It says its not compatible with the developer. Thank you.
Upvotes: 2
Views: 6431
Reputation: 51
SQLite is already installed on the Mac. Go to Terminal create a directory e.g. sqlite by typing Mkdir sqlite, next type cd sqlite, now type sqlite3 mytest.db. You should see something like: SQLite version 3.19.3 2017-06-27 16:48:08. The prompt will also change to sqlite>, type .help for a list of commands. I hope this helps.
Upvotes: 5