forked from mtxr/SublimeText-SQLTools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SQLToolsConnections.sublime-settings
103 lines (103 loc) · 3.65 KB
/
SQLToolsConnections.sublime-settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"connections": {
/*
"Generic Template": { // Connection name, used in menu (Display name)
// connection properties set to "null" will prompt for value when connecting
"type" : "pgsql", // DB type: (mysql, pgsql, oracle, vertica, sqlite, firebird, sqsh)
"host" : "HOSTNAME", // DB host to connect to
"port" : PORT, // DB port
"database" : "DATABASE", // DB name (for SQLite this is the path to DB file)
"username" : "USERNAME", // DB username
"password" : "PASSWORD", // DB password (see RDMBS specific comments below)
"encoding" : "utf-8" // DB encoding. Default: utf-8
},
"Connection MySQL": {
"type" : "mysql",
"host" : "127.0.0.1",
"port" : 3306,
"database": "dbname",
"username": "user",
// use of password for MySQL is not recommended (use "defaults-extra-file" or "login-path")
"password": "password", // you will get a security warning in the output
// "defaults-extra-file": "/path/to/defaults_file_with_password", // use [client] or [mysql] section
// "login-path": "your_login_path", // login path in your ".mylogin.cnf"
"default-character-set": "utf8",
"encoding": "utf-8"
},
"Connection PostgreSQL": {
"type" : "pgsql",
"host" : "127.0.0.1",
"port" : 5432,
"database": "dbname",
"username": "anotheruser",
// password is optional (setup "pgpass.conf" file instead)
"password": "password",
"encoding": "utf-8"
},
"Connection Oracle": {
"type" : "oracle",
"host" : "127.0.0.1",
"port" : 1521,
"database": "dbname",
"username": "anotheruser",
"password": "password",
"service" : "servicename",
// nls_lang is optional
"nls_lang": "american_america.al32utf8",
"encoding": "utf-8"
},
"Connection MSSQL": {
"type" : "mssql",
// use either ("host", "port") and remove "instance"
// or ("host", "instance") and remove "port"
"host" : "localhost",
"instance": "SQLEXPRESS",
// "port" : 1433,
// "username" and "password" are optional (remove if not needed)
"username": "sa",
"password": "password",
"database": "sample",
"encoding": "utf-8"
},
"Connection SQLite": {
"type" : "sqlite",
// note the forward slashes in path
"database": "c:/sqlite/sample_db/chinook.db",
"encoding": "utf-8"
},
"Connection Vertica": {
"type" : "vertica",
"host" : "localhost",
"port" : 5433,
"username": "anotheruser",
"password": "password",
"database": "dbname",
"encoding": "utf-8"
},
"Connection Firebird": {
"type" : "firebird",
"host" : "localhost",
"port" : 3050,
"username": "sysdba",
"password": "password",
// 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
"user" : "[email protected]",
"account" : "account_name",
"auth": : "snowflake | externalbrowser | <okta-url>",
// if using "auth": "snowflake", provide a password
// you can alternatively set SNOWSQL_PWD in you environment instead
// if using "auth": "externalbrowser" or "<okta-url>", no password needed
"password": "pwd"
}
*/
},
"default": null
}