From a20222fc22059df30b09b49621a784b54919613a Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sat, 18 Oct 2008 18:14:06 +0000 Subject: - 0.5.0rc3, doh - The internal notion of an "OID" or "ROWID" column has been removed. It's basically not used by any dialect, and the possibility of its usage with psycopg2's cursor.lastrowid is basically gone now that INSERT..RETURNING is available. - Removed "default_order_by()" method on all FromClause objects. - profile/compile/select test is 8 function calls over on buildbot 2.4 for some reason, will adjust after checking the results of this commit --- lib/sqlalchemy/databases/sqlite.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'lib/sqlalchemy/databases/sqlite.py') diff --git a/lib/sqlalchemy/databases/sqlite.py b/lib/sqlalchemy/databases/sqlite.py index 35f07b784..70c3f74ec 100644 --- a/lib/sqlalchemy/databases/sqlite.py +++ b/lib/sqlalchemy/databases/sqlite.py @@ -298,9 +298,6 @@ class SQLiteDialect(default.DefaultDialect): def create_execution_context(self, connection, **kwargs): return SQLiteExecutionContext(self, connection, **kwargs) - def oid_column_name(self, column): - return "oid" - def is_disconnect(self, e): return isinstance(e, self.dbapi.ProgrammingError) and "Cannot operate on a closed database." in str(e) -- cgit v1.2.1