mssql-cli
mssql-cli copied to clipboard
Switching db with `use` does not update db name in prompt
I experience similar issue to #408
- Connect to host
$ mssql-cli -U <user> -P <password> -S <host>
master >
- Switching to different DB
master> use test_db;
Time: 0.252s
Commands completed successfully.
master>
- Promp indicates "previous" db but context uses "new" db (
\ltfor instance returns tables fromtest_db);
If I start mssql-cli with -d flag it seems fine:
$ mssql-cli -U <user> -P <password> -S <host> -d test_db
test_db>
However use command still does not change prompt name
Version 1.0.0