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.
 
Go to file
Thorsten Muerell 41cb0c8eda
Formatting
7 years ago
.vscode Initial commit 7 years ago
src Formatting 7 years ago
syntaxes Block detection 7 years ago
.gitignore More doc 7 years ago
.vscodeignore Initial commit 7 years ago
CHANGELOG.md Initial commit 7 years ago
README.md Documentation 7 years ago
TODO.md More Docs 7 years ago
frog-runner.jar Row limit 7 years ago
package.json Version bump 7 years ago
tsconfig.json Initial commit 7 years ago
vsc-extension-quickstart.md Initial commit 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"
        }
      ]}
  ]
}