~vorlon/ubuntu/saucy/gourmet/trunk

« back to all changes in this revision

Viewing changes to src/lib/legacy_db/db_08/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Rolf Leggewie
  • Date: 2008-07-26 13:29:41 UTC
  • Revision ID: james.westby@ubuntu.com-20080726132941-6ldd73qmacrzz0bn
Tags: upstream-0.14.0
ImportĀ upstreamĀ versionĀ 0.14.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Database backend stuff should all be in this directory.
 
2
#
 
3
# rdatabase is the base class subclassed by different DB backends.
 
4
# rmetakit is our stable backend
 
5
# rsqlite and rmysql are experimental SQL backends.
 
6
#
 
7
# PythonicSQL is a base class for experimental glue between SQL and metakit-y object
 
8
# oriented DB access.
 
9
# pythonic_sqlite and pythonic_mysql are derived classes from PythonicSQL to handle
 
10
# interaction with each of these sql variants. Other SQL subclasses should be easy to
 
11
# implement.