]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- more or less pg8000 support. has a rough time with non-ascii data.
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 16 Jan 2009 19:31:28 +0000 (19:31 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 16 Jan 2009 19:31:28 +0000 (19:31 +0000)
commit3a7eb0b1b8299ee43376fbada30b2be4319cb695
treeee3d1894ce5ae50ce5dd61ea3941953b42cad376
parent670a153f4ec7d15bfcd39f614f854407fc51e880
- more or less pg8000 support. has a rough time with non-ascii data.
- removed "send unicode straight through" logic from sqlite, this becomes
base dialect configurable
- simplfied Interval type to not have awareness of PG dialect.  dialects
can name TypeDecorator classes in their colspecs dict.
16 files changed:
lib/sqlalchemy/dialects/mysql/base.py
lib/sqlalchemy/dialects/mysql/mysqldb.py
lib/sqlalchemy/dialects/postgres/base.py
lib/sqlalchemy/dialects/postgres/pg8000.py [new file with mode: 0644]
lib/sqlalchemy/dialects/postgres/psycopg2.py
lib/sqlalchemy/dialects/sqlite/base.py
lib/sqlalchemy/dialects/sqlite/pysqlite.py
lib/sqlalchemy/engine/base.py
lib/sqlalchemy/engine/default.py
lib/sqlalchemy/sql/compiler.py
lib/sqlalchemy/types.py
lib/sqlalchemy/util.py
test/engine/reconnect.py
test/sql/query.py
test/sql/testtypes.py
test/testlib/requires.py