1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
# sqlite.py
# Copyright (C) 2005 Michael Bayer mike_mp@zzzcomputing.com
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
import sys, StringIO, string, types, re
import sqlalchemy.sql as sql
import sqlalchemy.engine as engine
import sqlalchemy.schema as schema
import sqlalchemy.ansisql as ansisql
import sqlalchemy.types as sqltypes
from sqlalchemy.ansisql import *
from pysqlite2 import dbapi2 as sqlite
colspecs = {
sqltypes.INT : "INTEGER",
sqltypes.CHAR : "CHAR(%(length)s)",
sqltypes.VARCHAR : "VARCHAR(%(length)s)",
sqltypes.TEXT : "TEXT",
sqltypes.Numeric : "NUMERIC(%(precision)s, %(length)s)",
sqltypes.FLOAT : "NUMERIC(%(precision)s, %(length)s)",
sqltypes.DECIMAL : "NUMERIC(%(precision)s, %(length)s)",
sqltypes.TIMESTAMP : "TIMESTAMP",
sqltypes.DATETIME : "TIMESTAMP",
sqltypes.CLOB : "TEXT",
sqltypes.BLOB : "BLOB",
sqltypes.BOOLEAN : "BOOLEAN",
}
pragma_names = {
'INTEGER' : sqltypes.INT,
'VARCHAR' : sqltypes.VARCHAR,
'CHAR' : sqltypes.CHAR,
'TEXT' : sqltypes.TEXT,
'NUMERIC' : sqltypes.FLOAT,
'TIMESTAMP' : sqltypes.TIMESTAMP,
'BLOB' : sqltypes.BLOB,
}
def engine(filename, opts, **params):
return SQLiteSQLEngine(filename, opts, **params)
class SQLiteSQLEngine(ansisql.ANSISQLEngine):
def __init__(self, filename, opts, **params):
self.filename = filename
self.opts = opts or {}
ansisql.ANSISQLEngine.__init__(self, **params)
def post_exec(self, connection, cursor, statement, parameters, echo = None, compiled = None, **kwargs):
if compiled is None: return
if getattr(compiled, "isinsert", False):
self.context.last_inserted_ids = [cursor.lastrowid]
def last_inserted_ids(self):
return self.context.last_inserted_ids
def connect_args(self):
return ([self.filename], self.opts)
def compile(self, statement, bindparams):
compiler = SQLiteCompiler(self, statement, bindparams)
statement.accept_visitor(compiler)
return compiler
def dbapi(self):
return sqlite
def columnimpl(self, column):
return SQLiteColumnImpl(column)
def reflecttable(self, table):
c = self.execute("PRAGMA table_info(" + table.name + ")", {})
while True:
row = c.fetchone()
if row is None:
break
print "row! " + repr(row)
(name, type, nullable, primary_key) = (row[1], row[2].upper(), not row[3], row[5])
match = re.match(r'(\w+)(\(.*?\))?', type)
coltype = match.group(1)
args = match.group(2)
print "coltype: " + repr(coltype) + " args: " + repr(args)
coltype = pragma_names[coltype]
if args is not None:
args = re.findall(r'(\d+)', args)
print "args! " +repr(args)
coltype = coltype(*args)
table.append_item(schema.Column(name, coltype, primary_key = primary_key, nullable = nullable))
c = self.execute("PRAGMA foreign_key_list(" + table.name + ")", {})
while True:
row = c.fetchone()
if row is None:
break
(tablename, localcol, remotecol) = (row[2], row[3], row[4])
print "row! " + repr(row)
remotetable = Table(tablename, self, autoload = True)
table.c[localcol].foreign_key = schema.ForeignKey(remotetable.c[remotecol])
class SQLiteCompiler(ansisql.ANSICompiler):
pass
class SQLiteColumnImpl(sql.ColumnSelectable):
def get_specification(self):
coltype = self.column.type
if isinstance(coltype, type):
key = coltype
else:
key = coltype.__class__
colspec = self.name + " " + colspecs[key] % {'precision': getattr(coltype, 'precision', 10), 'length' : getattr(coltype, 'length', 10)}
if not self.column.nullable:
colspec += " NOT NULL"
if self.column.primary_key:
colspec += " PRIMARY KEY"
if self.column.foreign_key:
colspec += " REFERENCES %s(%s)" % (self.column.foreign_key.column.table.name, self.column.foreign_key.column.name)
return colspec
|