2017-01-13 14:06:34 +00:00
|
|
|
// package mssql implements the TDS protocol used to connect to MS SQL Server (sqlserver)
|
|
|
|
// database servers.
|
|
|
|
//
|
|
|
|
// This package registers two drivers:
|
|
|
|
// sqlserver: uses native "@" parameter placeholder names and does no pre-processing.
|
|
|
|
// mssql: expects identifiers to be prefixed with ":" and pre-processes queries.
|
|
|
|
//
|
|
|
|
// If the ordinal position is used for query parameters, identifiers will be named
|
|
|
|
// "@p1", "@p2", ... "@pN".
|
|
|
|
//
|
2017-03-31 00:03:13 +00:00
|
|
|
// Please refer to the README for the format of the DSN.
|
2017-01-13 14:06:34 +00:00
|
|
|
package mssql
|