2019-06-29 23:28:17 -04:00
|
|
|
// package mssql implements the TDS protocol used to connect to MS SQL Server (sqlserver)
|
|
|
|
// database servers.
|
|
|
|
//
|
2019-07-26 00:10:20 -04:00
|
|
|
// This package registers the driver:
|
2019-06-29 23:28:17 -04:00
|
|
|
// sqlserver: uses native "@" parameter placeholder names and does no pre-processing.
|
|
|
|
//
|
|
|
|
// If the ordinal position is used for query parameters, identifiers will be named
|
|
|
|
// "@p1", "@p2", ... "@pN".
|
|
|
|
//
|
2019-07-26 00:10:20 -04:00
|
|
|
// Please refer to the README for the format of the DSN. There are multiple DSN
|
|
|
|
// formats accepted: ADO style, ODBC style, and URL style. The following is an
|
|
|
|
// example of a URL style DSN:
|
|
|
|
// sqlserver://sa:mypass@localhost:1234?database=master&connection+timeout=30
|
2019-06-29 23:28:17 -04:00
|
|
|
package mssql
|