doc.go 513 B

123456789101112
  1. // package mssql implements the TDS protocol used to connect to MS SQL Server (sqlserver)
  2. // database servers.
  3. //
  4. // This package registers two drivers:
  5. // sqlserver: uses native "@" parameter placeholder names and does no pre-processing.
  6. // mssql: expects identifiers to be prefixed with ":" and pre-processes queries.
  7. //
  8. // If the ordinal position is used for query parameters, identifiers will be named
  9. // "@p1", "@p2", ... "@pN".
  10. //
  11. // Please refer to the REAME for the format of the DSN.
  12. package mssql