I'm working on changing a csv to database table. I...
# plugins-general
t
I'm working on changing a csv to database table. I configured the SQ lite loader in my yml file. does this final config: database: my_database.db. will i need to install sq Lite and create a folder of the same name for it to be the destination or will it be sent to a folder in my project if i create one named my_database.db?
d
if
database
is set to
my_database.db
, tap-sqlite will look for a file with that name in the root of your project directory. If it doesn't exist, it will create the file for you and create new tables inside it named after the entities coming from the extractor. If the file already exists, it will use that existing database file and update the existing tables inside it.
t
ok thanks!