I apologize for the extremely noobish quesetion, though I could not understand the answer provided here: Where is SQLite database stored on disk?. When creating a table within the SQLite3 shell via these commands as suggested here (Bulk load data into sqlite?):
sqlite3 myDatabase
create table myTable (a, b, c);
.separator ','
.import myFile myTable
I was not able to determine where "myDatabase" is actually saved to. Could someone please help me understand which folder it is typically saved to on a Mac, or how I could specify a folder to save it to.
Thanks so much for your help and patience

