David Shiflet
David Shiflet
SQL sends rowcount status tokens in the `done` message for statements like `declare @d int = 1`. The driver needs to keep track of whether columns have been sent or...
In order to keep the reader channel unblocked we have to handle every `done` and `doneInProc` token by sending a `MsgNextResult`. I am tempted to combine the token read and...
The following TSQL query can't be processed using `*mssql.UniqueIdentifier` as the destination: `select convert(uniqueidentifier, null)` Similar to scanning into `*interface{}` the driver should support a `nil` value Perhaps re-define the...
https://github.com/denisenkom/go-mssqldb/blob/ee2fbc25fd8f2d8c56af5ca2d7b661fb50fdb23a/types.go#L1467 I think this should `return ti.Size, true`
**Describe the bug** Set the server for testing to a networked SQL instance using Windows auth go test ``` Exception message: --- FAIL: TestQueryCancelHighLevel (108.90s) tds_test.go:257: Starting SSPI login tds_test.go:253:...
I'd like to be able to xor two flags, where one flag is a string with lots of options and another flag is a bool. If the user uses the...
I am trying to write some tests for code that has some dynamic code loading. The nature of our dev machine builds is it's too easy to mix non-delay signed...
I'm interested in getting support for converting go test json output to TRX for easier integration with Azure Devops and other processes that already process Visual Studio-style test results. I'd...
I think I opened the original issue in the wrong place: https://github.com/moby/moby/issues/39622#issue-474059608 Should I duplicate the entire text here or is the link sufficient?
### Feature Request I am trying to implement the equivalent of [sqlcmd -G](https://docs.microsoft.com/sql/tools/sqlcmd-utility?view=sql-server-ver15), using the token-based access connector of the [go-mssqldb](github.com/denisenkom/go-mssqldb) driver. The driver doesn't yet negotiate with the server...