fix for proper retrieval of columns in SQLite

This commit is contained in:
Miroslav Stampar 2012-02-24 09:55:13 +00:00
parent f9d2971474
commit 71028a81f5

View File

@ -2355,7 +2355,7 @@ def parseSqliteTableSchema(value):
table = {} table = {}
columns = {} columns = {}
for match in re.finditer(getCompiledRegex(r"(\w+) ([A-Z]+)[,\r\n]"), value): for match in re.finditer(getCompiledRegex(r"(\w+)\s+(TEXT|NUMERIC|INTEGER|REAL|NONE)"), value):
columns[match.group(1)] = match.group(2) columns[match.group(1)] = match.group(2)
table[conf.tbl] = columns table[conf.tbl] = columns