mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
513 B
12 lines
513 B
// 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". |
|
// |
|
// Please refer to the REAME for the format of the DSN. |
|
package mssql
|
|
|