Skip to main content

Firebirdsql wrapper inspired by subprocess.run

Project description

firebirdsql-run

Firebirdsql wrapper inspired by subprocess.run

PyPI: Version GitHub: Release Documentation CI: pre-commit CI: main CI: coverage

InstallationExamplesEnv Variables

Installation

pip install firebirdsql-run
# or
poetry add firebirdsql-run

Examples

Execute a query with read-only access:

from firebirdsql_run import DBAccess, execute

# Execute a query with read-only access.
result = execute(query="SELECT * FROM table", db="database", access=DBAccess.READ_ONLY)

# Output: List of dictionaries containing the query results.
print(result.data)

Execute a query with parameters and log the result:

# Execute a query with parameters.
result = execute(query="INSERT INTO customers (name, age) VALUES (?, ?)", params=("John", 25))

# Log the result.
if result.returncode != 0:
    logger.error(result)
else:
    logger.info(result)

Execute a query using the existing connection:

# Create a connection object.
conn = connection(db="database", access=DBAccess.READ_ONLY)
# Execute a query using the existing connection.
result = execute(query="SELECT * FROM table", use_conn=conn)
# Close the connection.
conn.close()

# Output: Named tuple representing the completed transaction.
print(result)

An example of a successful transaction:

>>> print(result)
CompletedTransaction(
    host="127.0.0.1",
    db="database",
    user="TWUSER",
    access="READ_ONLY",
    returncode=0,
    exception="",
    query="SELECT * FROM table",
    params=(),
    time=0.001,
    data=[
        {'id': 1, 'name': 'John Doe', 'department': 'Sales'},
        {'id': 2, 'name': 'Jane Smith', 'department': 'Sales'},
    ],
)

An example of a failed transaction:

>>> print(result)
CompletedTransaction(
    host="127.0.0.1",
    db="database",
    user="TWUSER",
    access="READ_ONLY",
    returncode=1,
    exception="Dynamic SQL Error\nSQL error code = -204\nTable unknown\ntable\nAt line 1, column 15\n",
    query="SELECT * FROM table",
    params=(),
    time=0.001,
    data=[],
)

Env Variables

FIREBIRD_KEY=

The FIREBIRD_KEY environment variable can be overridden with the functions argument passwd.

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

firebirdsql_run-1.1.2a1.tar.gz (6.1 kB view details)

Uploaded Source

Built Distribution

firebirdsql_run-1.1.2a1-py3-none-any.whl (6.6 kB view details)

Uploaded Python 3

File details

Details for the file firebirdsql_run-1.1.2a1.tar.gz.

File metadata

  • Download URL: firebirdsql_run-1.1.2a1.tar.gz
  • Upload date:
  • Size: 6.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for firebirdsql_run-1.1.2a1.tar.gz
Algorithm Hash digest
SHA256 00079b34fd2fd4964aaa759d7055718ef7f8ea1eee158909ba77e7f81e13a1e7
MD5 a72e09e50f5a6aab5de1ca4774aae713
BLAKE2b-256 68023e0b645713ef771a5922cf2be53d8b18e49f50c029ade98d0fa12acb10fc

See more details on using hashes here.

File details

Details for the file firebirdsql_run-1.1.2a1-py3-none-any.whl.

File metadata

File hashes

Hashes for firebirdsql_run-1.1.2a1-py3-none-any.whl
Algorithm Hash digest
SHA256 92e36fece5d7342a8a6fb13496d58811a834fb3d788520ad57612da4e798f6a2
MD5 6c13fbef1d7883e881604cb10d2073db
BLAKE2b-256 6854d1a116fa1b2dcd37e139974afb96f83f1d771e1d330d2427502bcd2baf3d

See more details on using hashes here.

Supported by

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