denisenkom

Results 51 comments of denisenkom

To start I would need example packets that are being exchanged when Kerberos authentication is used. You can provide that data using Wireshark when you use Java version of TDS...

I've added Kerberos support to pytds recently: https://github.com/denisenkom/pytds/pull/103/files So if somebody wants to add it into go-mssqldb driver and have means to test it, then that would be a good...

Named pipes and shared memory connections are not supported. Only tcp connections are supported, you can enable tcp endpoint for your server to get it to work.

There is a https://github.com/natefinch/npipe project which seems promising. If you want you can implement it and send a pull request.

If you decide to implement it please make it a soft dependency on npipe, it should only be required if named pipes connection is requested by user.

I have created an experimental branch https://github.com/denisenkom/go-mssqldb/tree/no-goroutines. It implements response handling without use of goroutines. It does not support request cancellation and I don't yet know how this can be...

So I've changed parameter type to NULLTYPE but there is still a problem. We use sp_executesql to run queries with parameters, and it requires all parameters to have types. Those...

basically we need to find a type to replace string SOMETHING below, which would work for all types: sp_executesql('declare @x binary = @p1; select @x', '@p1 SOMETHING', null) sp_executesql('declare @x...