Metadata-Version: 1.1
Name: breezeblocks
Version: 0.2.2
Summary: A lightweight SQL Querying package.
Home-page: https://github.com/modimore/BreezeBlocks
Author: Quinn Mortimer
Author-email: quinn.e.mortimer@gmail.com
License: MIT
Description: BreezeBlocks
        ============
        
        .. image:: https://readthedocs.org/projects/breezeblocks/badge/?version=latest
           :target: http://breezeblocks.readthedocs.io/en/latest/?badge=latest
           :alt: Documentation Status
        
        BreezeBlocks is a query abstraction layer that takes advantage of some of the
        features of the Python language more than DBAPI 2.0 modules, but provides
        more lightweight result objects and more flexible querying than many ORMs for
        the language.
        
        Most available SQL abstractions are ORMs implementing something similar to
        the Active Record pattern. A class is defined for each table,  with class-level
        properties representing the columns. Rows in the table become instances of their
        class.
        
        BreezeBlocks is designed as a query builder rather than an ORM. SQL Syntax is
        exposed in Python classes which are passed into methods for query construction.
        Query results are plain-old-data types similar to a C struct. They provide
        access to fields of the row by name, but are still compact and don't have as
        much usage overhead as most Python objects.
        
        This package is meant to help you use databases, not manage databases.
        Querying, inserting, updating, and deleting (row-level operations) are within
        scope of the project. Creating tables, views, and triggers is not.
        
        Version History
        ===============
        0.2.2
        -----
        Change the method signature for creating a database, and for executing any
        SQL statement. The change to the database initialization arguments is a
        breaking change.
        
        0.2.1
        -----
        Adds DML functionality. New builders and new operations for database inserts,
        updates, and deletes have been added. They are accessible from the Database
        class just like the query builder.
        
        The new builders use a similar interface to the query builder, and the new
        operations use a similar interface to the query.
        
        0.2.0
        -----
        Divide the responsibilities of building and representing a query between two
        classes, Query and the new QueryBuilder.
        
        If upgrading from a previous version, please review the Query and QueryBuilder
        classes. When building a query, query_builder.get() must now be invoked to
        get a usable query object.
        
        0.1.1
        -----
        Introduces the Column Collection concept to the code, and starts using its
        implementation in tables, joins, and queries.
        
        0.1.0
        -----
        Query functionality covers enough possibilities of the SQL language to meet
        most anticipated developer needs.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Database :: Front-Ends
Classifier: Operating System :: OS Independent
