SQLAlchemy 0.6.1 Documentation

Version: 0.6.1 Last Updated: 07/25/2016 21:14:41
API Reference | Index

Overview / Installation

Overview

The SQLAlchemy SQL Toolkit and Object Relational Mapper is a comprehensive set of tools for working with databases and Python. It has several distinct areas of functionality which can be used individually or combined together. Its major components are illustrated below. The arrows represent the general dependencies of components:

_images/sqla_arch_small.jpg

Above, the two most significant front-facing portions of SQLAlchemy are the Object Relational Mapper and the SQL Expression Language. SQL Expressions can be used independently of the ORM. When using the ORM, the SQL Expression language remains part of the public facing API as it is used within object-relational configurations and queries.

Tutorials

  • Object Relational Tutorial - This describes the richest feature of SQLAlchemy, its object relational mapper. If you want to work with higher-level SQL which is constructed automatically for you, as well as management of Python objects, proceed to this tutorial.
  • SQL Expression Language Tutorial - The core of SQLAlchemy is its SQL expression language. The SQL Expression Language is a toolkit all its own, independent of the ORM package, which can be used to construct manipulable SQL expressions which can be programmatically constructed, modified, and executed, returning cursor-like result sets. It’s a lot more lightweight than the ORM and is appropriate for higher scaling SQL operations. It’s also heavily present within the ORM’s public facing API, so advanced ORM users will want to master this language as well.

Main Documentation

  • Mapper Configuration - A comprehensive walkthrough of major ORM patterns and techniques.
  • Using the Session - A detailed description of SQLAlchemy’s Session object
  • Database Engines - Describes SQLAlchemy’s database-connection facilities, including connection documentation and working with connections and transactions.
  • Database Meta Data - All about schema management using MetaData and Table objects; reading database schemas into your application, creating and dropping tables, constraints, defaults, sequences, indexes.
  • Connection Pooling - Further detail about SQLAlchemy’s connection pool library.
  • Column and Data Types - Datatypes included with SQLAlchemy, their functions, as well as how to create your own types.
  • sqlalchemy.ext - Included addons for SQLAlchemy

Code Examples

Working code examples are included in the SQLAlchemy distribution, and there are also usage recipes on the SQLAlchemy wiki. A description of all the included example applications is at Examples.

API Reference

An organized section of all SQLAlchemy APIs is at API Reference.

Installing SQLAlchemy

Installing SQLAlchemy from scratch is most easily achieved with setuptools. Assuming it’s installed, just run this from the command-line:

# easy_install SQLAlchemy

This command will download the latest version of SQLAlchemy from the Python Cheese Shop and install it to your system.

Otherwise, you can install from the distribution using the setup.py script:

# python setup.py install

Installing a Database API

SQLAlchemy is designed to operate with a DB-API implementation built for a particular database, and includes support for the most popular databases. The current list is at Supported Databases.

Checking the Installed SQLAlchemy Version

This documentation covers SQLAlchemy version 0.6. If you’re working on a system that already has SQLAlchemy installed, check the version from your Python prompt like this:

>>> import sqlalchemy
>>> sqlalchemy.__version__ 
0.6.0

0.5 to 0.6 Migration

Notes on what’s changed from 0.5 to 0.6 is available on the SQLAlchemy wiki at 06Migration.

Previous: Table of Contents Next: Object Relational Tutorial