forked from mtxr/SublimeText-SQLTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add Snowflake (snowsql) support and give an example configuration
- Loading branch information
Kyle Foreman
committed
Feb 27, 2019
1 parent
9ba95d3
commit eae14b1
Showing
2 changed files
with
42 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -82,6 +82,16 @@ | |
// note the forward slashes (if path is used) | ||
"database": "c:/firebird/examples/empbuild/employee.fdb", | ||
"encoding": "utf-8" | ||
}, | ||
"Connection Snowflake": { | ||
"type" : "snowsql", | ||
"database": "database", | ||
// for possible authentication configurations see | ||
// https://docs.snowflake.net/manuals/user-guide/snowsql-start.html#authenticator | ||
// if using "snowflake", need to set SNOWSQL_PWD environment variable | ||
"user" : "[email protected]", | ||
"account" : "account_name", | ||
"auth": : "snowflake | externalbrowser | <okta-url>" | ||
} | ||
*/ | ||
}, | ||
|