https://github.com/gitpod-io/oracle-devtools-demo
A repo for testing the Oracle DevTools VS Code Extension
https://github.com/gitpod-io/oracle-devtools-demo
Last synced: 3 months ago
JSON representation
A repo for testing the Oracle DevTools VS Code Extension
- Host: GitHub
- URL: https://github.com/gitpod-io/oracle-devtools-demo
- Owner: gitpod-io
- License: mit
- Created: 2022-05-16T16:39:09.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-05-26T17:32:49.000Z (about 4 years ago)
- Last Synced: 2025-01-17T13:33:18.295Z (over 1 year ago)
- Size: 11.7 KB
- Stars: 1
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gitpod + Oracle DB + Oracle DevTools Extension demo
[](https://gitpod.io/#https://github.com/gitpod-io/oracle-devtools-demo)
This is a repository for demoing connecting to Oracle Databases via their [DevTools Extension](https://marketplace.visualstudio.com/items?itemName=Oracle.oracledevtools).
The following is also installed when you open this repository in Gitpod:
- The Dotnet SDK (the extension requires it to work)
- The SQL*Plus CLI for debugging
## Connecting to the database
### Via the extension
1. Open the Command Palette and run `Oracle: New Connection`
2. Fill in the details with the following:
- Connection Type: Basic
- Database host name: localhost
- Port number: 1521
- Service name: `XEPDB1`
- Role: `Default`
- User name: `gitpod`
- Password: `gitpod`
3. Hit `Create Connection`
4. You should see the Database connection in the sidebar
### Via SQL*Plus
Run the following in a terminal:
```bash
sqlplus gitpod/gitpod@//localhost:1521/XEPDB1
```