An open API service indexing awesome lists of open source software.

https://github.com/davydany/dbmole

A database connectivity testing tool. You simply call DBMole with the parameters needed to connect to your DB (host, port, db, user, password), and let DBMole debug your connection for you!
https://github.com/davydany/dbmole

connectivity database java jdbc mysql odbc ojdbc oracle postgres

Last synced: 2 months ago
JSON representation

A database connectivity testing tool. You simply call DBMole with the parameters needed to connect to your DB (host, port, db, user, password), and let DBMole debug your connection for you!

Awesome Lists containing this project

README

        

# DBMole

A database connectivity testing tool. Currently works with Oracle, but plans are to make it work with databases that are supported by Java.

[![Download DBMole](https://img.shields.io/badge/DBMole-Download-orange.svg)](https://github.com/davydany/dbmole/releases)

## Supported Databases

* Oracle
* Oracle with TLS
* PostgreSQL
* MongoDB
* MySQL
* MariaDB

## Getting Started

1. Download the `dbmole-.jar` jar file from here: [![Download DBMole](https://img.shields.io/badge/DBMole-Download-orange.svg)](https://github.com/davydany/dbmole/releases)
2. Run: `java -jar dbmole-.jar` to see all the options you can pass to DBConn.
3. Now test the database you want to connect to.

## Basic Usage

To get started, run with `--help` flag to see all the options.

You will need to provide the `hostname` and `port` of your database
as they are required, followed by optional fields like `--username`,
`--password`, and `--database`. Use `--help` for additional parameters
and options you can pass to `dbmole`.