You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Thorsten Muerell
fff01cd2c7
|
7 years ago | |
---|---|---|
.vscode | 7 years ago | |
src | 7 years ago | |
.gitignore | 7 years ago | |
.vscodeignore | 7 years ago | |
CHANGELOG.md | 7 years ago | |
README.md | 7 years ago | |
TODO.md | 7 years ago | |
frog-runner.jar | 7 years ago | |
package.json | 7 years ago | |
tsconfig.json | 7 years ago | |
vsc-extension-quickstart.md | 7 years ago |
README.md
frog
This is a better TOAD (i.e. a SQL client for Oracle Databases)
Usage
- The best experience is with the
PL/SQL
extension installed. Ctrl+Enter
executes the currently selected command- The results are shown in a HTML preview window. You can use
Alt+Cmd+1
to switch the window to the bottom.
Configuration file
To configure the available connections you can create a file named .frog.json
in your home directory with a content like this:
{ "type": "folder",
"name": "root",
"items": [
{ "type": "folder",
"name": "Example Folder",
"items": [
{
"type": "connection",
"name": "Connection 1",
"host": "127.0.0.1",
"port": 1521,
"sid": "world",
"username": "scott",
"password": "tiger"
}
]}
]
}