Skip to content

Commit

Permalink
Update go-mssqldb driver reference
Browse files Browse the repository at this point in the history
  • Loading branch information
burningalchemist authored and kenshaw committed Sep 7, 2022
1 parent 4586058 commit 8798a2e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ to be imported:
| Oracle Database (oracle) | [github.com/sijms/go-ora](https://github.com/sijms/go-ora) |
| PostgreSQL (postgres) | [github.com/lib/pq](https://github.com/lib/pq) |
| SQLite3 (sqlite3) | [github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3) |
| Microsoft SQL Server (sqlserver) | [github.com/denisenkom/go-mssqldb](https://github.com/denisenkom/go-mssqldb) |
| Microsoft SQL Server (sqlserver) | [github.com/microsoft/go-mssqldb](https://github.com/microsoft/go-mssqldb) |
| | |
| Amazon Redshift (redshift) | [github.com/lib/pq](https://github.com/lib/pq) |
| CockroachDB (cockroachdb) | [github.com/lib/pq](https://github.com/lib/pq) |
Expand Down Expand Up @@ -250,7 +250,7 @@ import (
"fmt"
"log"

_ "github.com/denisenkom/go-mssqldb"
_ "github.com/microsoft/go-mssqldb"
"github.com/xo/dburl"
)

Expand Down
2 changes: 1 addition & 1 deletion _example/example.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"log"

_ "github.com/denisenkom/go-mssqldb"
_ "github.com/microsoft/go-mssqldb"
"github.com/xo/dburl"
)

Expand Down
2 changes: 1 addition & 1 deletion dburl.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
//
// Database (scheme/driver) | Package
// ----------------------------------|-------------------------------------------------
// Microsoft SQL Server (sqlserver) | github.com/denisenkom/go-mssqldb
// Microsoft SQL Server (sqlserver) | github.com/microsoft/go-mssqldb
// MySQL (mysql) | github.com/go-sql-driver/mysql
// Oracle Database (oracle) | github.com/sijms/go-ora/v2
// PostgreSQL (postgres) | github.com/lib/pq
Expand Down

0 comments on commit 8798a2e

Please sign in to comment.