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
I wanted to replace sqlite with csvq in a tool where sqlite is overkill and it is better to keep pure go.
This tool used CREATE TABLE IF NOT EXISTS. I know I can check for the existence of the file before calling CREATE TABLE but it will be easier if we stick to SQL and besides CREATE TABLE IF NOT EXISTS can also send an error if the existing file has a different format than the requested one.
The text was updated successfully, but these errors were encountered:
I wanted to replace sqlite with csvq in a tool where sqlite is overkill and it is better to keep pure go.
This tool used
CREATE TABLE IF NOT EXISTS
. I know I can check for the existence of the file before callingCREATE TABLE
but it will be easier if we stick to SQL and besidesCREATE TABLE IF NOT EXISTS
can also send an error if the existing file has a different format than the requested one.The text was updated successfully, but these errors were encountered: