Skip to content

Commit 3e03505

Browse files
authored
update to microsoft go driver
1 parent c45937b commit 3e03505

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

azure-sql/database/connect-query-go.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ ms.topic: quickstart
1111
author: dzsquared
1212
ms.author: drskwier
1313
ms.reviewer: kendralittle, mathoma
14-
ms.date: 04/14/2021
14+
ms.date: 05/05/2022
1515
monikerRange: "=azuresql||=azuresql-db||=azuresql-mi"
1616
---
1717
# Quickstart: Use Golang to query a database in Azure SQL Database or Azure SQL Managed Instance
1818
[!INCLUDE[appliesto-sqldb-sqlmi](../includes/appliesto-sqldb-sqlmi.md)]
1919

20-
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.
2121

2222
## Prerequisites
2323

@@ -70,7 +70,7 @@ Get the connection information you need to connect to the database. You'll need
7070

7171
```bash
7272
cd SqlServerSample
73-
go get github.com/denisenkom/go-mssqldb
73+
go get github.com/microsoft/go-mssqldb
7474
```
7575

7676
## Create sample data
@@ -114,7 +114,7 @@ Get the connection information you need to connect to the database. You'll need
114114
package main
115115

116116
import (
117-
_ "github.com/denisenkom/go-mssqldb"
117+
_ "github.com/microsoft/go-mssqldb"
118118
"database/sql"
119119
"context"
120120
"log"
@@ -330,5 +330,5 @@ Get the connection information you need to connect to the database. You'll need
330330
## Next steps
331331

332332
- [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

Comments
 (0)