Metadata-Version: 1.0
Name: foundationdb-sql
Version: 0.9.1
Summary: FoundationDB SQL Layer DBAPI Integration
Home-page: https://github.com/FoundationDB/sql-layer-adapter-dbapi
Author: FoundationDB
Author-email: distribution@foundationdb.com
License: MIT
Description: =================
        foundationdb-sql
        =================
        
        foundationdb-sql a DBAPI compatibility layer for the
        `Foundation DB SQL Layer <https://foundationdb.com/layers/sql/index.html>`_.
        
        The Foundation DB SQL Layer is a relational engine that uses
        FoundationDB as a storage engine.  Its behavior and SQL syntax
        is similar in many ways to
        well known engines like Postgresql and MySQL.   However, it introduces
        some new twists on SQL, including the ability to render "nested" result
        sets using plain SQL.
        
        Foundation DB SQL Layer uses a database protocol that is compatible with
        Postgresql.   Any `DBAPI <http://www.python.org/dev/peps/pep-0249/>`_
        written for Postgresql can also work with the SQL Layer directly.
        However, ``foundationdb-sql`` provides a wrapper around the DBAPI
        such that the SQL layer's "nested" result system can be used
        transparently, meaning any result row can contain columns which themselves
        contain "sub-cursors".
        
        So far, foundationdb-sql implements one extension module for
        the `psycopg2 <http://pypi.python.org/pypi/psycopg2/>`_ DBAPI for Postgresql.
        Psycopg2 is the most widely used DBAPI for Postgresql, is extremely
        performant and stable and supports Python 3.
        
        Documentation
        =============
        
        See https://foundationdb.com/layers/sql/documentation/AppIntegration/Python/dbapi/.
        
        
Keywords: foundationdb
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Database :: Front-Ends
