1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-08-03 20:45:26 +02:00

Update SQL Server driver library

This commit is contained in:
HarveyKandola 2019-06-25 15:37:19 +01:00
parent c538fc9eb1
commit 9c36241b58
37 changed files with 9138 additions and 1091 deletions

View file

@ -0,0 +1,32 @@
# How to use the Connector object
A Connector holds information in a DSN and is ready to make a new connection at any time. Connector implements the database/sql/driver Connector interface so it can be passed to the database/sql `OpenDB` function. One property on the Connector is the `SessionInitSQL` field, which may be used to set any options that cannot be passed through a DSN string.
To use the Connector type, first you need to import the sql and go-mssqldb packages
```
import (
"database/sql"
"github.com/denisenkom/go-mssqldb"
)
```
Now you can create a Connector object by calling `NewConnector`, which creates a new connector from a DSN.
```
dsn := "sqlserver://username:password@hostname/instance?database=databasename"
connector, err := mssql.NewConnector(dsn)
```
You can set `connector.SessionInitSQL` for any options that cannot be passed through in the dsn string.
`connector.SessionInitSQL = "SET ANSI_NULLS ON"`
Open a database by passing connector to `sql.OpenDB`.
`db := sql.OpenDB(connector)`
The returned DB maintains its own pool of idle connections. Now you can use the `sql.DB` object for querying and executing queries.
## Example
[NewConnector example](../newconnector_example_test.go)