Open bobvanderlinden opened 1 week ago
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?
\copy
\c
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?