go-sqlcmd
go-sqlcmd copied to clipboard
The new sqlcmd, CLI for SQL Server and Azure SQL (winget install sqlcmd / sqlcmd create mssql / sqlcmd open ads)
In implementing `sqlcmd open ads` for Mac, we've hit an issue, in that the name of the credential that ADS is expecting (via SqlToolsService) is named using UTF16 characters (the...
When generating the connection strings via `sqlcmd config connection-strings`, the ADO.NET doesn't work as is: - The connection string contains spaces that make it hard to just copy-and-paste it into...
would be helpful to be able to modify a user/endpoint/context rather than delete/re-create
sqlcmd open ads It prompts error :  Expected Output : Would be nice to have an equivalent of the sqlcmd -C, --trust-server-certificate, on the azuredatastudio.exe cmd line, so...
I had docker instance created along with explicitly installed sql server and when trying to connect to docker instance using backward compat syntax I see these messages. ``` C:\Users\apdeshmukh\git\go-sqlcmd>.\sqlcmd.exe -Slocalhost:1435...
Currently the Testcmd function just executes a command, but doesn't allow for further verification that the output generated was expected cmdparser.TestSetup(t) cmdparser.TestCmd[*AddEndpoint]() cmdparser.TestCmd[*AddContext]("--endpoint endpoint") cmdparser.TestCmd[*UseContext]("--name context") Provide a pattern that...
Right now `sqlcmd start` does not block waiting for SQL Server to be running and ready for client connections. So if `sqlcmd query` is immediately run, it will fail with:...
For POSIX systems, a man(1) page should be provided. The README.md already looks like it might have a good starting point for the man page content.
This is related to the other issue on application_name. Where we are looking to set application name to "sqlcmd", but this request go further and asks that the application name...
I've been using this pattern for negative tests, that are expecting a failure: defer func() { test.CatchExpectedError(recover(), t) }() This pattern ends up causing a test to pass for any...