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
Copy file name to clipboardExpand all lines: content/en/user-guide/snowflake-drivers/index.md
+65
Original file line number
Diff line number
Diff line change
@@ -88,3 +88,68 @@ connection.execute({
88
88
}
89
89
});
90
90
```
91
+
92
+
## Go Driver
93
+
94
+
The Go Snowflake driver provides a way to connect to Snowflake and perform database operations using Go. You can use this driver to connect to the Snowflake emulator for testing your Snowflake integrations in Go.
95
+
96
+
To install the Go Snowflake driver, execute the following command:
97
+
98
+
{{< command >}}
99
+
$ go get github.com/snowflakedb/gosnowflake
100
+
{{< /command >}}
101
+
102
+
The connection string follows the format `username:password@host:port/database?account=account_name`. For the emulator use:
0 commit comments