Skip to main content

A high level JDBC API

Project description

PyPI version Documentation Status License: MIT Say Thanks!

pyJDBCConnector

pyJDBCConnector is a high level JDBC connection API that was designed to provide a further abstraction for jdbc connections in python. This package is designed as an introduction to jdbc connections in Python and as such provides much less customizability with a focus on accessibility.

Motivation

This package came about due to intricacies of dealing with the Denodo JDBC driver with SSL enabled. The jaydebeapi package that this package is heavily reliant on doesn't provide the ability to specify the location of a Trust Store file at JVM start-up. This was a big problem for us and we needed to solve this for analysts with less engineering experience and enable them to get an introduction to Python programming with familiar data.

Limitations

  • Currently this package has only been tested for the Denodo JDBC driver

Examples

Installation/Usage:

This package is currently on PyPi and can be installed through:

pip install pyjdbcconnector

This package is driven primarily through config files. To understand how config files are set up please see the Documentation

Connect to a Denodo JDBC with SSL enabled

"""
This example demonstrates how to use the DenodoConnector
api for connecting to a Denodo based JDBC with a Trust Store
file
"""
import pandas as pd

from pyjdbcconnector.connectors import DenodoConnector

# Initialize a DenodoConnector object
# the DenodoConnector object acts as 
# a builder.
dc = DenodoConnector()

# Here, we build the connection using the built-in
# builder functions
conn = dc\
    .from_config("path/to/denodo_config.ini")\
    .connect()

# this connection acts as a normal sql connection and we can use it
# as we would use any other connection in Python

# Assuming we want to read a table into a pandas dataframe
SQL_QUERY = "select * from tablename"
data = pd.read_sql(SQL_QUERY, conn)

To connect to a JDBC without SSL, omit the lines that require a Trust Store.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyjdbcconnector-0.2.1.tar.gz (4.6 kB view details)

Uploaded Source

File details

Details for the file pyjdbcconnector-0.2.1.tar.gz.

File metadata

  • Download URL: pyjdbcconnector-0.2.1.tar.gz
  • Upload date:
  • Size: 4.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0.post20200309 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.10

File hashes

Hashes for pyjdbcconnector-0.2.1.tar.gz
Algorithm Hash digest
SHA256 75be572404b1ddbb42938193abf2aac0896432633f6ccc029530f991b27b00b0
MD5 ac958a78bcc595c4dc77cb406771ec08
BLAKE2b-256 ddd9fb294fcc82151ca4173ddc92c5443d50dd32eb86fa8b33968f3bd24cd436

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page