-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgemini-extension.json
More file actions
33 lines (33 loc) · 953 Bytes
/
gemini-extension.json
File metadata and controls
33 lines (33 loc) · 953 Bytes
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
{
"name": "oracledb",
"version": "0.2.1",
"description": "Connect, query, and interact with Oracle Databases and their data within Gemini CLI.",
"contextFileName": "ORACLEDB.md",
"settings": [
{
"name": "Connection String",
"description": "Oracle connection string (e.g., host:port/service_name or TNS alias)",
"envVar": "ORACLE_CONNECTION_STRING"
},
{
"name": "Username",
"description": "Oracle database username",
"envVar": "ORACLE_USERNAME"
},
{
"name": "Password",
"description": "Oracle database password",
"envVar": "ORACLE_PASSWORD"
},
{
"name": "Wallet Path",
"description": "(Optional) Path to the Oracle Wallet directory",
"envVar": "ORACLE_WALLET"
},
{
"name": "Use OCI",
"description": "(Optional) Set to true to use the OCI (thick client) driver (Default: false)",
"envVar": "ORACLE_USE_OCI"
}
]
}