You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this quickstart, you'll use the [Golang](https://godoc.org/github.com/denisenkom/go-mssqldb) programming language to connect to a database in Azure SQL Database or Azure SQL Managed Instance. You'll then run Transact-SQL statements to query and modify data. [Golang](https://go.dev/) is an open-source programming language that makes it easy to build simple, reliable, and efficient software.
20
+
In this quickstart, you'll use the Golang programming language to connect to a database in Azure SQL Database or Azure SQL Managed Instance with the [go-mssqldb]((https://github.com/microsoft/go-mssqldb). The sample queries and modifies data with explicit Transact-SQL statements. [Golang](https://go.dev/) is an open-source programming language that makes it easy to build simple, reliable, and efficient software.
21
21
22
22
## Prerequisites
23
23
@@ -70,7 +70,7 @@ Get the connection information you need to connect to the database. You'll need
70
70
71
71
```bash
72
72
cd SqlServerSample
73
-
go get github.com/denisenkom/go-mssqldb
73
+
go get github.com/microsoft/go-mssqldb
74
74
```
75
75
76
76
## Create sample data
@@ -114,7 +114,7 @@ Get the connection information you need to connect to the database. You'll need
114
114
package main
115
115
116
116
import (
117
-
_ "github.com/denisenkom/go-mssqldb"
117
+
_ "github.com/microsoft/go-mssqldb"
118
118
"database/sql"
119
119
"context"
120
120
"log"
@@ -330,5 +330,5 @@ Get the connection information you need to connect to the database. You'll need
330
330
## Next steps
331
331
332
332
-[Design your first database in Azure SQL Database](design-first-database-tutorial.md)
333
-
-[Golang driver for SQL Server](https://github.com/denisenkom/go-mssqldb)
334
-
-[Report issues or ask questions](https://github.com/denisenkom/go-mssqldb/issues)
333
+
-[Golang driver for SQL Server](https://github.com/microsoft/go-mssqldb)
334
+
-[Report issues or ask questions](https://github.com/microsoft/go-mssqldb/issues)
0 commit comments