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
\copy
When doing the following:
=> \cset MSSQL mssql://USER:PASS@HOST:PORT/DATABASE => \copy MSSQL csvq://. 'YYY' error: invalid database scheme
Note that the following works fine:
=> \cset MSSQL mssql://USER:PASS@HOST:PORT/DATABASE => \c MSSQL
As does using copy without the connection variable:
=> \copy mssql://USER:PASS@HOST:PORT/DATABASE csvq://. 'YYY'
Somehow \copy handles connection variables differently from \c. What could be the issue?
\c
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When doing the following:
Note that the following works fine:
As does using copy without the connection variable:
Somehow
\copy
handles connection variables differently from\c
.What could be the issue?
The text was updated successfully, but these errors were encountered: