1// package mssql implements the TDS protocol used to connect to MS SQL Server (sqlserver)
2// database servers.
3//
4// This package registers the driver:
5//    sqlserver: uses native "@" parameter placeholder names and does no pre-processing.
6//
7// If the ordinal position is used for query parameters, identifiers will be named
8// "@p1", "@p2", ... "@pN".
9//
10// Please refer to the README for the format of the DSN. There are multiple DSN
11// formats accepted: ADO style, ODBC style, and URL style. The following is an
12// example of a URL style DSN:
13//    sqlserver://sa:mypass@localhost:1234?database=master&connection+timeout=30
14package mssql
15