sqlalchemy-hana


Namesqlalchemy-hana JSON
Version 2.1.0 PyPI version JSON
download
home_pageNone
SummarySQLAlchemy dialect for SAP HANA
upload_time2024-04-26 05:42:07
maintainerNone
docs_urlNone
authorNone
requires_python~=3.8
licenseApache-2.0
keywords sqlalchemy sap hana
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            SQLAlchemy dialect for SAP HANA
===============================

.. image:: https://api.reuse.software/badge/github.com/SAP/sqlalchemy-hana
    :target: https://api.reuse.software/info/github.com/SAP/sqlalchemy-hana

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
    :target: https://github.com/psf/black

This dialect allows you to use the SAP HANA database with SQLAlchemy.
It uses ``hdbcli`` to connect to SAP HANA.
Please notice that sqlalchemy-hana isn't an official SAP product and isn't covered by SAP support.

Prerequisites
-------------
* Python 3.8+
* SQLAlchemy 1.4 or 2.x
* `hdbcli <https://help.sap.com/viewer/f1b440ded6144a54ada97ff95dac7adf/latest/en-US/f3b8fabf34324302b123297cdbe710f0.html>`_

Install
-------
Install from the Python Package Index:

.. code-block:: bash

    $ pip install sqlalchemy-hana

Versioning
----------
sqlalchemy-hana follows the semantic versioning standard, meaning that breaking changes will
only be added in major releases.
Please note, that only the following modules are considered to be part of the public API

- ``sqlalchemy_hana.types``

For these, only exported members (part of ``__all__`` ) are guaranteed to be stable.

Supported HANA Versions/Editions
--------------------------------
* SAP HANA Cloud
* SAP HANA
* SAP HANA, express edition

Getting started
---------------
If you do not have access to a SAP HANA server, you can also use the
`SAP HANA Express edition <https://www.sap.com/cmp/td/sap-hana-express-edition.html>`_.

After installation of sqlalchemy-hana, you can create a engine which connects to a SAP HANA
instance. This engine works like all other engines of SQLAlchemy.

.. code-block:: python

    from sqlalchemy import create_engine
    engine = create_engine('hana://username:password@example.de:30015')

Alternatively, you can use HDB User Store to avoid entering connection-related information manually
each time you want to establish a connection to an SAP HANA database:

.. code-block:: python

    from sqlalchemy import create_engine
    engine = create_engine('hana://userkey=my_user_store_key')

You can create your user key in the user store using the following command:

.. code-block::

	hdbuserstore SET <KEY> <host:port> <USERNAME> <PASSWORD>

In case of a tenant database, you may use:

.. code-block:: python

    from sqlalchemy import create_engine
    engine = engine = create_engine('hana://user:pass@host/tenant_db_name')

Usage
-----

Special CREATE TABLE argument
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Sqlalchemy-hana provides a special argument called “hana_table_type” which can be used to
specify the type of table one wants to create with SAP HANA (i.e. ROW/COLUMN).
The default table type depends on your SAP HANA configuration and version.

.. code-block:: python

    t = Table('my_table', metadata, Column('id', Integer), hana_table_type = 'COLUMN')

Case Sensitivity
~~~~~~~~~~~~~~~~
In SAP HANA, all case insensitive identifiers are represented using uppercase text.
In SQLAlchemy on the other hand all lower case identifier names are considered to be case insensitive.
The sqlalchemy-hana dialect converts all case insensitive and case sensitive identifiers to the
right casing during schema level communication.
In the sqlalchemy-hana dialect, using an uppercase name on the SQLAlchemy side indicates a case
sensitive identifier, and SQLAlchemy will quote the name,which may cause case mismatches between
data received from SAP HANA.
Unless identifier names have been truly created as case sensitive (i.e. using quoted names),
all lowercase names should be used on the SQLAlchemy side.

LIMIT/OFFSET Support
~~~~~~~~~~~~~~~~~~~~
SAP HANA supports both ``LIMIT`` and ``OFFSET``, but it only supports ``OFFSET`` in conjunction with
``LIMIT`` i.e. in the select statement the offset parameter cannot be set without the ``LIMIT``
clause, hence in sqlalchemy-hana if the user tries to use offset without limit, a limit of
``2147384648`` would be set, this has been done so that the users can smoothly use ``LIMIT`` or
``OFFSET`` as in other databases that do not have this limitation.
``2147384648`` was chosen, because it is the maximum number of records per result set.

RETURNING Support
~~~~~~~~~~~~~~~~~
Sqlalchemy-hana does not support ``RETURNING`` in the ``INSERT``, ``UPDATE`` and ``DELETE``
statements to retrieve result sets of matched rows from ``INSERT``, ``UPDATE`` and ``DELETE``
statements because newly generated primary key values are neither fetched nor returned automatically
in SAP HANA and SAP HANA does not support the syntax ``INSERT... RETURNING...``.

Reflection
~~~~~~~~~~
The sqlalchemy-hana dialect supports all reflection capabilities of SQLAlchemy.
The Inspector used for the SAP HANA database is an instance of ``HANAInspector`` and offers an
additional method which returns the OID (object id) for the given table name.

.. code-block:: python

    from sqlalchemy import create_engine, inspect

    engine = create_engine("hana://username:password@example.de:30015")
    insp = inspect(engine)  # will be a HANAInspector
    print(insp.get_table_oid('my_table'))

Foreign Key Constraints
~~~~~~~~~~~~~~~~~~~~~~~
In SAP HANA the following ``UPDATE`` and ``DELETE`` foreign key referential actions are available:

* RESTRICT
* CASCADE
* SET NULL
* SET DEFAULT

The foreign key referential option ``NO ACTION`` does not exist in SAP HANA.
The default is ``RESTRICT``.

UNIQUE Constraints
~~~~~~~~~~~~~~~~~~
For each unique constraint an index is created in SAP HANA, this may lead to unexpected behavior
in programs using reflection.

Data types
~~~~~~~~~~
As with all SQLAlchemy dialects, all UPPERCASE types that are known to be valid with SAP HANA are
importable from the top level dialect, whether they originate from sqlalchemy types or from the
local dialect.
Therefore all supported types are part of the ``sqlalchemy_hana.types`` module and can be used from
there.

sqlalchemy-hana aims to support as many SQLAlchemy types as possible and to fallback to a similar
type of the requested type is not supported in SAP HANA.
The following table shows the mapping:

.. list-table::
    :header-rows: 1

    * - SQLAlchemy type
      - HANA type
    * - DATETIME
      - TIMESTAMP
    * - NUMERIC
      - DECIMAL
    * - String
      - NVARCHAR
    * - Unicode
      - NVARCHAR
    * - TEXT
      - NCLOB
    * - BINARY
      - VARBINARY
    * - DOUBLE_PRECISION
      - DOUBLE
    * - Uuid
      - NVARCHAR(32)
    * - LargeBinary
      - BLOB
    * - UnicodeText
      - NCLOB

Please note, that some types might not support a length, precision or scale, even if the SQLAlchemy
type class accepts them.
The type compiler will then just ignore these arguments are render a type which will not lead to a
SQL error.

The ``ARRAY`` datatype is not supported because ``hdbcli`` does not yet provide support for it.

Regex
~~~~~
sqlalchemy-hana supports the ``regexp_match`` and ``regexp_replace``
functions provided by SQLAlchemy.

Bound Parameter Styles
~~~~~~~~~~~~~~~~~~~~~~
The default parameter style for the sqlalchemy-hana dialect is ``qmark``, where SQL is rendered
using the following style:

.. code-block:: sql

    WHERE my_column = ?

Boolean
~~~~~~~
By default, sqlalchemy-hana uses native boolean types.
However, older versions of sqlalchemy-hana used integer columns to represent these values leading
to a compatibility gap.
To *disable* native boolean support, add ``use_native_boolean=False`` to ``create_engine``.

Users are encouraged to switch to native booleans.
This can be e.g. done by using ``alembic``:

.. code-block:: python

    from sqlalchemy import false

    # assuming a table TAB with a tinyint column named valid
    def upgrade() -> None:
        op.add_column(Column("TAB", Column('valid_tmp', Boolean, server_default=false())))
        op.get_bind().execute("UPDATE TAB SET valid_tmp = TRUE WHERE valid = 1")
        op.drop_column("TAB", "valid")
        op.get_bind().execute("RENAME COLUMN TAB.valid_tmp to valid")
        # optionally, remove also the server default by using alter column

Computed columns
~~~~~~~~~~~~~~~~
SAP HANA supports two computed/calculated columns:

* <col> AS <expr>: the column is fully virtual and the expression is evaluated with each SELECT
* <col> GENERATED ALWAYS AS <expr>: the expression is evaluated during insertion and the value
    is stored in the table

By default, sqlalchemy-hana creates a ``GENERATED ALWAYS AS`` if a ``Computed`` column is used.
If ``Computed(persisted=False)`` is used, a fully virtual column using ``AS`` is created.

Views
~~~~~
sqlalchemy-hana supports the creation and usage of SQL views.

The views are not bound to the metadata object, therefore each needs to be created/dropped manually
using ``CreateView`` and ``DropView``.
By using the helper function ``view``, a ``TableClause`` object is generated which can be used in
select statements.
The returned object has the same primary keys as the underlying selectable.

Views can also be used in ORM and e.g. assigned to the ``__table__`` attribute of declarative base
classes.

For general information about views, please refer to
`this page <https://github.com/sqlalchemy/sqlalchemy/wiki/Views>`_.

.. code-block:: python

    from sqlalchemy import Column, Integer, MetaData, String, Table, select
    from sqlalchemy_hana.elements import CreateView, DropView, view

    engine = None  # a engine bound to a SAP HANA instance
    metadata = MetaData()
    stuff = sa.Table(
        "stuff",
        metadata,
        Column("id", Integer, primary_key=True),
        Column("data", String(50)),
    )

    selectable = select(stuff.c.id, stuff.c.data).where(stuff.c.data == "something")

    with engine.begin() as conn:
        # create a view
        ddl = CreateView("stuff_view", selectable)
        conn.execute(ddl)

        # usage of a view
        stuff_view = view("stuff_view", selectable)
        select(stuff_view.c.id, stuff_view.c.data).all()

        # drop a view
        ddl = DropView("stuff_view")
        conn.execute(ddl)

Upsert
~~~~~~
UPSERT statements are supported with some limitations by sqlalchemy-hana.
Caching is disabled due to implementation details and will not be added until a unified
insert/upsert/merge implementation is available in SQLAlchemy (see https://github.com/sqlalchemy/sqlalchemy/issues/8321).

.. code-block:: python

    from sqlalchemy import Column, Integer, MetaData, String, Table
    from sqlalchemy_hana.elements import upsert

    engine = None  # a engine bound to a SAP HANA instance
    metadata = MetaData()
    stuff = sa.Table(
        "stuff",
        metadata,
        Column("id", Integer, primary_key=True),
        Column("data", String(50)),
    )

    with engine.begin() as conn:
        statement upsert(stuff).values(id=1, data="some").filter_by(id=1)
        conn.execute(statement)

Identity
~~~~~~~~
Identity columns are fully supported but not reflection of those.
Therefore, alembic support for identity columns is reduced to creation of those.

Auto-increment
~~~~~~~~~~~~~~
SAP HANA only supports auto-increment with identity columns, therefore an identity will be rendered
if needed. This means that the  the following constructs are equivalent:

* ``Column('some', Integer, autoincrement=True)``
* ``Column('some', Integer, Identity, autoincrement=True)``
* ``Column('some', Integer, Identity, autoincrement=True)``

Note, that for ``autoincrement=True`` a post-execute statement execution is needed to fetch the
inserted identity value which might affect performance.

As an SQLAlchemy specific alternative, a ``sqlalchemy.schema.Sequence`` can be used to simulate
an auto-increment behavior, as followed:

.. code-block:: python

    t = Table('my_table', metadata, Column('id', Integer, Sequence('id_seq'), primary key=True))

Note, that on SAP HANA side, the column and the sequence are not linked, meaning that the sequence
can be e.g. be incremented w/o an actual insert into the table.

Alembic
-------
The sqlalchemy-hana dialect also contains a dialect for ``alembic``.
This dialect is active as soon as ``alembic`` is installed.
To ensure version compatibility, install sqlalchemy-hana as followed:

.. code-block:: bash

    $ pip install sqlalchemy-hana[alembic]

Error handling for humans
-------------------------
sqlalchemy-hana provides the ``sqlalchemy_hana.errors`` module which contains a set of
special exceptions and wrapper methods.
SQLAlchemy and hdbcli only provide generic exceptions which are sometimes not very helpful and
manual effort is needed to extract the relevant information.
To make this easier, the module provides two wrapper functions which take a SQLAlchemy or hdbcli
error and raise a more specific exception if possible.

.. code-block:: python

    from sqlalchemy_hana.errors import wrap_dbapi_error
    from sqlalchemy.exc import DBAPIError

    try:
        # some sqlalchemy code which might raise a DBAPIError
    except DBAPIError as err:
        wrap_dbapi_error(err)
        # if you reach this line, either the wrapped error of DBAPIError was not a hdbcli error
        # of no more specific exception was found

Development Setup
-----------------
We recommend the usage of ``pyenv`` to install a proper 3.11 python version for development.

* ``pyenv install 3.11``
* ``python311 -m venv venv``
* ``source venv/bin/activate``
* ``pip install -U pip``
* ``pip install -e .[dev,test,alembic]``

To execute the tests, use ``pyenv``.
The linters and formatters can be executed using ``pre-commit``: ``pre-commit run -a``.

Testing
-------
**Pre-Submit**: Linters, formatters and test matrix
**Post-Submit**: Linters and formatters

Release Actions
---------------
* Update the version in the pyproject.toml
* Add an entry in the changelog
* Push a new tag like vX.X.X to trigger the release

Support, Feedback, Contributing
-------------------------------
This project is open to feature requests/suggestions, bug reports etc.
via `GitHub issues <https://github.com/SAP/sqlalchemy-hana/issues>`_.
Contribution and feedback are encouraged and always welcome.
For more information about how to contribute, the project structure,
as well as additional contribution information, see our
`Contribution Guidelines <https://github.com/SAP/sqlalchemy-hana/blob/main/CONTRIBUTING.md>`_.

Security / Disclosure
---------------------
If you find any bug that may be a security problem, please follow our instructions at
`in our security policy <https://github.com/SAP/sqlalchemy-hana/security/policy>`_ on how to report it.
Please do not create GitHub issues for security-related doubts or problems.

Code of Conduct
---------------
We as members, contributors, and leaders pledge to make participation in our community a
harassment-free experience for everyone.
By participating in this project, you agree to abide by its
`Code of Conduct <https://github.com/SAP/.github/blob/main/CODE_OF_CONDUCT.md>`_ at all times.

Licensing
---------
Copyright 2024 SAP SE or an SAP affiliate company and sqlalchemy-hana contributors.
Please see our `LICENSE <https://github.com/SAP/sqlalchemy-hana/blob/main/LICENSE>`_
for copyright and license information.
Detailed information including third-party components and their licensing/copyright information
is available `via the REUSE tool <https://api.reuse.software/info/github.com/SAP/sqlalchemy-hana>`_.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "sqlalchemy-hana",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "~=3.8",
    "maintainer_email": "Christoph Heer <christoph.heer@sap.com>, Kai Mueller <kai.mueller01@sap.com>",
    "keywords": "sqlalchemy, sap, hana",
    "author": null,
    "author_email": "Christoph Heer <christoph.heer@sap.com>",
    "download_url": "https://files.pythonhosted.org/packages/5f/3b/3baa12735306bb790c73d922a1c6bc7e1cedccb82d043cac4a0a0457a686/sqlalchemy_hana-2.1.0.tar.gz",
    "platform": null,
    "description": "SQLAlchemy dialect for SAP HANA\n===============================\n\n.. image:: https://api.reuse.software/badge/github.com/SAP/sqlalchemy-hana\n    :target: https://api.reuse.software/info/github.com/SAP/sqlalchemy-hana\n\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg\n    :target: https://github.com/psf/black\n\nThis dialect allows you to use the SAP HANA database with SQLAlchemy.\nIt uses ``hdbcli`` to connect to SAP HANA.\nPlease notice that sqlalchemy-hana isn't an official SAP product and isn't covered by SAP support.\n\nPrerequisites\n-------------\n* Python 3.8+\n* SQLAlchemy 1.4 or 2.x\n* `hdbcli <https://help.sap.com/viewer/f1b440ded6144a54ada97ff95dac7adf/latest/en-US/f3b8fabf34324302b123297cdbe710f0.html>`_\n\nInstall\n-------\nInstall from the Python Package Index:\n\n.. code-block:: bash\n\n    $ pip install sqlalchemy-hana\n\nVersioning\n----------\nsqlalchemy-hana follows the semantic versioning standard, meaning that breaking changes will\nonly be added in major releases.\nPlease note, that only the following modules are considered to be part of the public API\n\n- ``sqlalchemy_hana.types``\n\nFor these, only exported members (part of ``__all__`` ) are guaranteed to be stable.\n\nSupported HANA Versions/Editions\n--------------------------------\n* SAP HANA Cloud\n* SAP HANA\n* SAP HANA, express edition\n\nGetting started\n---------------\nIf you do not have access to a SAP HANA server, you can also use the\n`SAP HANA Express edition <https://www.sap.com/cmp/td/sap-hana-express-edition.html>`_.\n\nAfter installation of sqlalchemy-hana, you can create a engine which connects to a SAP HANA\ninstance. This engine works like all other engines of SQLAlchemy.\n\n.. code-block:: python\n\n    from sqlalchemy import create_engine\n    engine = create_engine('hana://username:password@example.de:30015')\n\nAlternatively, you can use HDB User Store to avoid entering connection-related information manually\neach time you want to establish a connection to an SAP HANA database:\n\n.. code-block:: python\n\n    from sqlalchemy import create_engine\n    engine = create_engine('hana://userkey=my_user_store_key')\n\nYou can create your user key in the user store using the following command:\n\n.. code-block::\n\n\thdbuserstore SET <KEY> <host:port> <USERNAME> <PASSWORD>\n\nIn case of a tenant database, you may use:\n\n.. code-block:: python\n\n    from sqlalchemy import create_engine\n    engine = engine = create_engine('hana://user:pass@host/tenant_db_name')\n\nUsage\n-----\n\nSpecial CREATE TABLE argument\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\nSqlalchemy-hana provides a special argument called \u201chana_table_type\u201d which can be used to\nspecify the type of table one wants to create with SAP HANA (i.e. ROW/COLUMN).\nThe default table type depends on your SAP HANA configuration and version.\n\n.. code-block:: python\n\n    t = Table('my_table', metadata, Column('id', Integer), hana_table_type = 'COLUMN')\n\nCase Sensitivity\n~~~~~~~~~~~~~~~~\nIn SAP HANA, all case insensitive identifiers are represented using uppercase text.\nIn SQLAlchemy on the other hand all lower case identifier names are considered to be case insensitive.\nThe sqlalchemy-hana dialect converts all case insensitive and case sensitive identifiers to the\nright casing during schema level communication.\nIn the sqlalchemy-hana dialect, using an uppercase name on the SQLAlchemy side indicates a case\nsensitive identifier, and SQLAlchemy will quote the name,which may cause case mismatches between\ndata received from SAP HANA.\nUnless identifier names have been truly created as case sensitive (i.e. using quoted names),\nall lowercase names should be used on the SQLAlchemy side.\n\nLIMIT/OFFSET Support\n~~~~~~~~~~~~~~~~~~~~\nSAP HANA supports both ``LIMIT`` and ``OFFSET``, but it only supports ``OFFSET`` in conjunction with\n``LIMIT`` i.e. in the select statement the offset parameter cannot be set without the ``LIMIT``\nclause, hence in sqlalchemy-hana if the user tries to use offset without limit, a limit of\n``2147384648`` would be set, this has been done so that the users can smoothly use ``LIMIT`` or\n``OFFSET`` as in other databases that do not have this limitation.\n``2147384648`` was chosen, because it is the maximum number of records per result set.\n\nRETURNING Support\n~~~~~~~~~~~~~~~~~\nSqlalchemy-hana does not support ``RETURNING`` in the ``INSERT``, ``UPDATE`` and ``DELETE``\nstatements to retrieve result sets of matched rows from ``INSERT``, ``UPDATE`` and ``DELETE``\nstatements because newly generated primary key values are neither fetched nor returned automatically\nin SAP HANA and SAP HANA does not support the syntax ``INSERT... RETURNING...``.\n\nReflection\n~~~~~~~~~~\nThe sqlalchemy-hana dialect supports all reflection capabilities of SQLAlchemy.\nThe Inspector used for the SAP HANA database is an instance of ``HANAInspector`` and offers an\nadditional method which returns the OID (object id) for the given table name.\n\n.. code-block:: python\n\n    from sqlalchemy import create_engine, inspect\n\n    engine = create_engine(\"hana://username:password@example.de:30015\")\n    insp = inspect(engine)  # will be a HANAInspector\n    print(insp.get_table_oid('my_table'))\n\nForeign Key Constraints\n~~~~~~~~~~~~~~~~~~~~~~~\nIn SAP HANA the following ``UPDATE`` and ``DELETE`` foreign key referential actions are available:\n\n* RESTRICT\n* CASCADE\n* SET NULL\n* SET DEFAULT\n\nThe foreign key referential option ``NO ACTION`` does not exist in SAP HANA.\nThe default is ``RESTRICT``.\n\nUNIQUE Constraints\n~~~~~~~~~~~~~~~~~~\nFor each unique constraint an index is created in SAP HANA, this may lead to unexpected behavior\nin programs using reflection.\n\nData types\n~~~~~~~~~~\nAs with all SQLAlchemy dialects, all UPPERCASE types that are known to be valid with SAP HANA are\nimportable from the top level dialect, whether they originate from sqlalchemy types or from the\nlocal dialect.\nTherefore all supported types are part of the ``sqlalchemy_hana.types`` module and can be used from\nthere.\n\nsqlalchemy-hana aims to support as many SQLAlchemy types as possible and to fallback to a similar\ntype of the requested type is not supported in SAP HANA.\nThe following table shows the mapping:\n\n.. list-table::\n    :header-rows: 1\n\n    * - SQLAlchemy type\n      - HANA type\n    * - DATETIME\n      - TIMESTAMP\n    * - NUMERIC\n      - DECIMAL\n    * - String\n      - NVARCHAR\n    * - Unicode\n      - NVARCHAR\n    * - TEXT\n      - NCLOB\n    * - BINARY\n      - VARBINARY\n    * - DOUBLE_PRECISION\n      - DOUBLE\n    * - Uuid\n      - NVARCHAR(32)\n    * - LargeBinary\n      - BLOB\n    * - UnicodeText\n      - NCLOB\n\nPlease note, that some types might not support a length, precision or scale, even if the SQLAlchemy\ntype class accepts them.\nThe type compiler will then just ignore these arguments are render a type which will not lead to a\nSQL error.\n\nThe ``ARRAY`` datatype is not supported because ``hdbcli`` does not yet provide support for it.\n\nRegex\n~~~~~\nsqlalchemy-hana supports the ``regexp_match`` and ``regexp_replace``\nfunctions provided by SQLAlchemy.\n\nBound Parameter Styles\n~~~~~~~~~~~~~~~~~~~~~~\nThe default parameter style for the sqlalchemy-hana dialect is ``qmark``, where SQL is rendered\nusing the following style:\n\n.. code-block:: sql\n\n    WHERE my_column = ?\n\nBoolean\n~~~~~~~\nBy default, sqlalchemy-hana uses native boolean types.\nHowever, older versions of sqlalchemy-hana used integer columns to represent these values leading\nto a compatibility gap.\nTo *disable* native boolean support, add ``use_native_boolean=False`` to ``create_engine``.\n\nUsers are encouraged to switch to native booleans.\nThis can be e.g. done by using ``alembic``:\n\n.. code-block:: python\n\n    from sqlalchemy import false\n\n    # assuming a table TAB with a tinyint column named valid\n    def upgrade() -> None:\n        op.add_column(Column(\"TAB\", Column('valid_tmp', Boolean, server_default=false())))\n        op.get_bind().execute(\"UPDATE TAB SET valid_tmp = TRUE WHERE valid = 1\")\n        op.drop_column(\"TAB\", \"valid\")\n        op.get_bind().execute(\"RENAME COLUMN TAB.valid_tmp to valid\")\n        # optionally, remove also the server default by using alter column\n\nComputed columns\n~~~~~~~~~~~~~~~~\nSAP HANA supports two computed/calculated columns:\n\n* <col> AS <expr>: the column is fully virtual and the expression is evaluated with each SELECT\n* <col> GENERATED ALWAYS AS <expr>: the expression is evaluated during insertion and the value\n    is stored in the table\n\nBy default, sqlalchemy-hana creates a ``GENERATED ALWAYS AS`` if a ``Computed`` column is used.\nIf ``Computed(persisted=False)`` is used, a fully virtual column using ``AS`` is created.\n\nViews\n~~~~~\nsqlalchemy-hana supports the creation and usage of SQL views.\n\nThe views are not bound to the metadata object, therefore each needs to be created/dropped manually\nusing ``CreateView`` and ``DropView``.\nBy using the helper function ``view``, a ``TableClause`` object is generated which can be used in\nselect statements.\nThe returned object has the same primary keys as the underlying selectable.\n\nViews can also be used in ORM and e.g. assigned to the ``__table__`` attribute of declarative base\nclasses.\n\nFor general information about views, please refer to\n`this page <https://github.com/sqlalchemy/sqlalchemy/wiki/Views>`_.\n\n.. code-block:: python\n\n    from sqlalchemy import Column, Integer, MetaData, String, Table, select\n    from sqlalchemy_hana.elements import CreateView, DropView, view\n\n    engine = None  # a engine bound to a SAP HANA instance\n    metadata = MetaData()\n    stuff = sa.Table(\n        \"stuff\",\n        metadata,\n        Column(\"id\", Integer, primary_key=True),\n        Column(\"data\", String(50)),\n    )\n\n    selectable = select(stuff.c.id, stuff.c.data).where(stuff.c.data == \"something\")\n\n    with engine.begin() as conn:\n        # create a view\n        ddl = CreateView(\"stuff_view\", selectable)\n        conn.execute(ddl)\n\n        # usage of a view\n        stuff_view = view(\"stuff_view\", selectable)\n        select(stuff_view.c.id, stuff_view.c.data).all()\n\n        # drop a view\n        ddl = DropView(\"stuff_view\")\n        conn.execute(ddl)\n\nUpsert\n~~~~~~\nUPSERT statements are supported with some limitations by sqlalchemy-hana.\nCaching is disabled due to implementation details and will not be added until a unified\ninsert/upsert/merge implementation is available in SQLAlchemy (see https://github.com/sqlalchemy/sqlalchemy/issues/8321).\n\n.. code-block:: python\n\n    from sqlalchemy import Column, Integer, MetaData, String, Table\n    from sqlalchemy_hana.elements import upsert\n\n    engine = None  # a engine bound to a SAP HANA instance\n    metadata = MetaData()\n    stuff = sa.Table(\n        \"stuff\",\n        metadata,\n        Column(\"id\", Integer, primary_key=True),\n        Column(\"data\", String(50)),\n    )\n\n    with engine.begin() as conn:\n        statement upsert(stuff).values(id=1, data=\"some\").filter_by(id=1)\n        conn.execute(statement)\n\nIdentity\n~~~~~~~~\nIdentity columns are fully supported but not reflection of those.\nTherefore, alembic support for identity columns is reduced to creation of those.\n\nAuto-increment\n~~~~~~~~~~~~~~\nSAP HANA only supports auto-increment with identity columns, therefore an identity will be rendered\nif needed. This means that the  the following constructs are equivalent:\n\n* ``Column('some', Integer, autoincrement=True)``\n* ``Column('some', Integer, Identity, autoincrement=True)``\n* ``Column('some', Integer, Identity, autoincrement=True)``\n\nNote, that for ``autoincrement=True`` a post-execute statement execution is needed to fetch the\ninserted identity value which might affect performance.\n\nAs an SQLAlchemy specific alternative, a ``sqlalchemy.schema.Sequence`` can be used to simulate\nan auto-increment behavior, as followed:\n\n.. code-block:: python\n\n    t = Table('my_table', metadata, Column('id', Integer, Sequence('id_seq'), primary key=True))\n\nNote, that on SAP HANA side, the column and the sequence are not linked, meaning that the sequence\ncan be e.g. be incremented w/o an actual insert into the table.\n\nAlembic\n-------\nThe sqlalchemy-hana dialect also contains a dialect for ``alembic``.\nThis dialect is active as soon as ``alembic`` is installed.\nTo ensure version compatibility, install sqlalchemy-hana as followed:\n\n.. code-block:: bash\n\n    $ pip install sqlalchemy-hana[alembic]\n\nError handling for humans\n-------------------------\nsqlalchemy-hana provides the ``sqlalchemy_hana.errors`` module which contains a set of\nspecial exceptions and wrapper methods.\nSQLAlchemy and hdbcli only provide generic exceptions which are sometimes not very helpful and\nmanual effort is needed to extract the relevant information.\nTo make this easier, the module provides two wrapper functions which take a SQLAlchemy or hdbcli\nerror and raise a more specific exception if possible.\n\n.. code-block:: python\n\n    from sqlalchemy_hana.errors import wrap_dbapi_error\n    from sqlalchemy.exc import DBAPIError\n\n    try:\n        # some sqlalchemy code which might raise a DBAPIError\n    except DBAPIError as err:\n        wrap_dbapi_error(err)\n        # if you reach this line, either the wrapped error of DBAPIError was not a hdbcli error\n        # of no more specific exception was found\n\nDevelopment Setup\n-----------------\nWe recommend the usage of ``pyenv`` to install a proper 3.11 python version for development.\n\n* ``pyenv install 3.11``\n* ``python311 -m venv venv``\n* ``source venv/bin/activate``\n* ``pip install -U pip``\n* ``pip install -e .[dev,test,alembic]``\n\nTo execute the tests, use ``pyenv``.\nThe linters and formatters can be executed using ``pre-commit``: ``pre-commit run -a``.\n\nTesting\n-------\n**Pre-Submit**: Linters, formatters and test matrix\n**Post-Submit**: Linters and formatters\n\nRelease Actions\n---------------\n* Update the version in the pyproject.toml\n* Add an entry in the changelog\n* Push a new tag like vX.X.X to trigger the release\n\nSupport, Feedback, Contributing\n-------------------------------\nThis project is open to feature requests/suggestions, bug reports etc.\nvia `GitHub issues <https://github.com/SAP/sqlalchemy-hana/issues>`_.\nContribution and feedback are encouraged and always welcome.\nFor more information about how to contribute, the project structure,\nas well as additional contribution information, see our\n`Contribution Guidelines <https://github.com/SAP/sqlalchemy-hana/blob/main/CONTRIBUTING.md>`_.\n\nSecurity / Disclosure\n---------------------\nIf you find any bug that may be a security problem, please follow our instructions at\n`in our security policy <https://github.com/SAP/sqlalchemy-hana/security/policy>`_ on how to report it.\nPlease do not create GitHub issues for security-related doubts or problems.\n\nCode of Conduct\n---------------\nWe as members, contributors, and leaders pledge to make participation in our community a\nharassment-free experience for everyone.\nBy participating in this project, you agree to abide by its\n`Code of Conduct <https://github.com/SAP/.github/blob/main/CODE_OF_CONDUCT.md>`_ at all times.\n\nLicensing\n---------\nCopyright 2024 SAP SE or an SAP affiliate company and sqlalchemy-hana contributors.\nPlease see our `LICENSE <https://github.com/SAP/sqlalchemy-hana/blob/main/LICENSE>`_\nfor copyright and license information.\nDetailed information including third-party components and their licensing/copyright information\nis available `via the REUSE tool <https://api.reuse.software/info/github.com/SAP/sqlalchemy-hana>`_.\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "SQLAlchemy dialect for SAP HANA",
    "version": "2.1.0",
    "project_urls": {
        "Changelog": "https://github.com/SAP/sqlalchemy-hana/blob/main/CHANGES.rst",
        "Issue Tracker": "https://github.com/SAP/sqlalchemy-hana/issues",
        "Repository": "https://github.com/SAP/sqlalchemy-hana"
    },
    "split_keywords": [
        "sqlalchemy",
        " sap",
        " hana"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49867762e44534c388fdba4a43bc342e864ca6df5bb2c25c1ddf622fbdc631c5",
                "md5": "7d446f9733cd3172b90a81525e7079dd",
                "sha256": "88c714e01221913067e20d3babe6decbe0b236ffe86098c62a0a6a9bf02c3edf"
            },
            "downloads": -1,
            "filename": "sqlalchemy_hana-2.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "7d446f9733cd3172b90a81525e7079dd",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "~=3.8",
            "size": 26222,
            "upload_time": "2024-04-26T05:42:05",
            "upload_time_iso_8601": "2024-04-26T05:42:05.664546Z",
            "url": "https://files.pythonhosted.org/packages/49/86/7762e44534c388fdba4a43bc342e864ca6df5bb2c25c1ddf622fbdc631c5/sqlalchemy_hana-2.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f3b3baa12735306bb790c73d922a1c6bc7e1cedccb82d043cac4a0a0457a686",
                "md5": "015acadc0b717e0731e2035422ef816b",
                "sha256": "9187c4de16b3241dece0108f0d3d1ab27d9f79c7bd3385435d29977e8e9c8d9c"
            },
            "downloads": -1,
            "filename": "sqlalchemy_hana-2.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "015acadc0b717e0731e2035422ef816b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "~=3.8",
            "size": 39712,
            "upload_time": "2024-04-26T05:42:07",
            "upload_time_iso_8601": "2024-04-26T05:42:07.613116Z",
            "url": "https://files.pythonhosted.org/packages/5f/3b/3baa12735306bb790c73d922a1c6bc7e1cedccb82d043cac4a0a0457a686/sqlalchemy_hana-2.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-26 05:42:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "SAP",
    "github_project": "sqlalchemy-hana",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "sqlalchemy-hana"
}
        
Elapsed time: 0.24598s