1 diff -Naur ezsqlobject-0.1.1~/ezsqlobject.py ezsqlobject-0.1.1/ezsqlobject.py
2 --- ezsqlobject-0.1.1~/ezsqlobject.py 2009-12-03 22:44:45.000000000 -0600
3 +++ ezsqlobject-0.1.1/ezsqlobject.py 2009-12-03 22:45:49.000000000 -0600
7 from sqlobject import \
9 - MySQLConnection, PostgresConnection, \
10 - SQLiteConnection, DBMConnection, FirebirdConnection
11 + SQLObject, mysql, postgres, sqlite, maxdb, firebird
17 EzSqlDb subclass specific for MySQL databases
19 - _connclass = MySQLConnection
22 def __init__(self, **kw):
26 EzSqlDb subclass specific for PostgreSQL databases
28 - _connclass = PostgresConnection
29 + _connclass = postgres
31 def __init__(self, **kw):
35 EzSqlDb subclass specific for SQLite databases
37 - _connclass = SQLiteConnection
40 def __init__(self, dbpath):
44 EzSqlDb subclass specific for DBM databases
46 - _connclass = DBMConnection
49 def __init__(self, path):
53 EzSqlDb subclass specific for Firebird databases
55 - _connclass = FirebirdConnection
56 + _connclass = firebird
58 def __init__(self, **kw):