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
$ db-to-sqlite mysql://localhost/blah blah.db \
--sql "select id, name from categories" --output="cats" \
--sql "select id, name from authors" --output="authors"
The text was updated successfully, but these errors were encountered:
This design doesn't feel right. Instead the --sql option should take two arguments - but that would break backwards compatibility now. Worth a major version bump?
I could add --query output_table sql_query and deprecate --sql and --output - leaving them available but removing them from the documentation and help using hidden=False.
Like this:
The text was updated successfully, but these errors were encountered: