You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the target table for writing data to must be initialized before tblconv can be used to write any records into it. For example, the following command will fail if the foo table isn't already present in the sqlite database.
tblconv csv into sql -s sqlite -q "insert into foo(id, name) values (?, ?);" data.csv
The text was updated successfully, but these errors were encountered:
Currently, the target table for writing data to must be initialized before
tblconv
can be used to write any records into it. For example, the following command will fail if thefoo
table isn't already present in the sqlite database.tblconv csv into sql -s sqlite -q "insert into foo(id, name) values (?, ?);" data.csv
The text was updated successfully, but these errors were encountered: