A libpq-based ADBC driver for working with Netezza.
Project description
ADBC Netezza Driver for Python
This package contains bindings for the Netezza driver, using the driver manager to provide a DBAPI 2.0/PEP 249-compatible interface on top.
Example
import adbc_driver_netezza.dbapi
uri = "netezza://username:password@localhost:5480/database_name"
with adbc_driver_netezza.dbapi.connect(uri) as conn:
with conn.cursor() as cur:
cur.execute("SELECT 1")
print(cur.fetch_arrow_table())
Building
Dependencies: a build of the Netezza driver, and the
adbc-driver-manager
Python package. Optionally, install PyArrow to
use the DBAPI 2.0-compatible interface.
Set the environment variable ADBC_NETEZZA_LIBRARY
to the path to
libadbc_driver_netezza.so
before running pip install
.
# If not already installed
pip install -e ../adbc_driver_manager
export ADBC_NETEZZA_LIBRARY=/path/to/libadbc_driver_netezza.so
pip install --no-deps -e .
For users building from the arrow-adbc source repository, you can alternately use CMake to manage library dependencies and set environment variables for you. Assuming you specify -DADBC_DRIVER_NETEZZA=ON
you can also add -DADBC_BUILD_PYTHON=ON
to define a python
target.
For example, assuming you run cmake from the project root:
cmake -S c -B build --preset debug -DADBC_BUILD_PYTHON=ON
cmake --build build --target python
will properly build and install the Python library for you.
See CONTRIBUTING.md for details on the general build process.
Testing
A running instance of Netezza is required.
To run the tests, set the environment variable specifying the Netezza URI before running tests:
$ export ADBC_NETEZZA_TEST_URI=netezza://localhost:5432/netezza?user=username&password=password
$ pytest -vvx
See CONTRIBUTING.md for details on the general test process.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file adbc_driver_netezza-0.0.10.tar.gz
.
File metadata
- Download URL: adbc_driver_netezza-0.0.10.tar.gz
- Upload date:
- Size: 1.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9703b9942d4f8b865238fba5705b3e15c5f5e027e9e674b948d73260a41b1b2 |
|
MD5 | ca669daaa9fa26fa0c413a0549545604 |
|
BLAKE2b-256 | 71fc6bdf5c1b42f45ef53c9344c7f372d2dccf92e549c55d6d88a371fc7200f9 |
File details
Details for the file adbc_driver_netezza-0.0.10-py3-none-any.whl
.
File metadata
- Download URL: adbc_driver_netezza-0.0.10-py3-none-any.whl
- Upload date:
- Size: 1.4 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bcb98dc839bafef5b1b45de8a1be35e1410675e9b1d7b914139fe1f860948a69 |
|
MD5 | b0c6f3221bdc5ded1af38bb4207958f4 |
|
BLAKE2b-256 | 19d34564cfbb4ae2f75770e596889b4893ab19c15501d91ea7909f432ee27c66 |