Custom SQL Server driver

Posted by hoodoos on Stack Overflow See other posts from Stack Overflow or by hoodoos
Published on 2010-05-07T03:33:49Z Indexed on 2010/05/07 4:38 UTC
Read the original article Hit count: 244

Filed under:
|
|
|

I had a crazy thought about writing my own SQL Server driver to make it work something like non-blocking http client, so it won't be thread thirsty and could handle lots of db queries within one thread.

I tried to look over google for some guidelines about implementing SQL Server client protocol, but found none really, where do those guys get information about it when they write own implementations for PHP or python?

I need a really low level to be documented so I can implement all phases of working with a connection through sockets. And would be really nice to have a an example in c# language. :)

© Stack Overflow or respective owner

Related posts about sql-server

Related posts about driver