Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

doc.go 643B

1234567891011121314
  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
  14. package mssql