Skip to content

Web-based SQL editor run in your own private cloud. Supports MySQL, Postgres, SQL Server, Vertica, Crate, ClickHouse, Trino, Presto, SAP HANA, Cassandra, Snowflake, BigQuery, SQLite, and more with ODBC. Fork enabling unixODBC by default and adding Oracle client and ODBC driver.

License

Notifications You must be signed in to change notification settings

hflobao/sqlpad-oracle

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SQLPad

A web app for writing and running SQL queries and visualizing the results. Supports Postgres, MySQL, SQL Server, ClickHouse, Crate, Vertica, Trino, Presto, SAP HANA, Cassandra, Snowflake, Google BigQuery, SQLite, TiDB and many more via ODBC.

SQLPad Query Editor

Docker Image

The docker image runs on port 3000 and uses /var/lib/sqlpad for the embedded database directory.

latest tag is continuously built from latest commit in repo. Only use that if you want to live on the edge, otherwise use specific version tags to ensure stability.

See docker-examples directory for example docker-compose setup with SQL Server.

Development

For instructions on installing/running SQLPad from git repo see DEVELOPER-GUIDE.md

Project Documentation

Documentation located at https://getsqlpad.com.

Documentation source located in docs directory, built/rendered by docsify.

Project Status

Despite recent development this last year and move to GitHub org, SQLPad is mostly "finished" in that it won't radically be changing from what it is today.

Maintenance releases and bugfixes guaranteed through 2021.

Contributing

Collaborators always welcome!

License

MIT

Connecting to Oracle Databases using ODBC connection string

On the "ODBC connection string" field, provide the following:

Driver={Oracle 21 ODBC driver}; dbq=<address>:<port>/<service_name>

On the "Database SQL for lookup schema" field, input the following query:

select 
  t.owner table_schema, 
  t.table_name table_name, 
  c.column_name column_name, 
  c.data_type data_type
from all_tables t inner join all_tab_columns c 
on t.owner = c.owner and t.table_name = c.table_name

About

Web-based SQL editor run in your own private cloud. Supports MySQL, Postgres, SQL Server, Vertica, Crate, ClickHouse, Trino, Presto, SAP HANA, Cassandra, Snowflake, BigQuery, SQLite, and more with ODBC. Fork enabling unixODBC by default and adding Oracle client and ODBC driver.

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 60.7%
  • TypeScript 32.6%
  • CSS 4.1%
  • Shell 1.8%
  • Dockerfile 0.5%
  • Smarty 0.2%
  • HTML 0.1%