We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I defined a connection like this in my config.yaml:
connections: my-db: 'mysql://mydatabase.example.com:3306/myvay'
and I noted, in general, that using a connection name with dashes in config.yaml cause an warning like:
warning: named connection "my-db" was not defined: invalid identifier
and if I try to connect to that with \c my-db I get:
\c my-db
error: invalid database scheme
If I rename my-db to my_db all works as expected.
my-db
my_db
Should we add this info to the README (I wasnt able to find any hint) or it is a bug?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I defined a connection like this in my config.yaml:
and I noted, in general, that using a connection name with dashes in config.yaml cause an warning like:
warning: named connection "my-db" was not defined: invalid identifier
and if I try to connect to that with
\c my-db
I get:error: invalid database scheme
If I rename
my-db
tomy_db
all works as expected.Should we add this info to the README (I wasnt able to find any hint) or it is a bug?
The text was updated successfully, but these errors were encountered: