.Sqlite3: ToLower for coltype

git-svn-id: svn://ultimatepp.org/upp/trunk@2407 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2010-05-18 18:26:43 +00:00
parent 3b3e22981f
commit 76e951d8bd

View file

@ -245,7 +245,7 @@ void Sqlite3Connection::GetColumn(int i, Ref f) const {
}
ASSERT(got_row_data);
String coltype = sqlite3_column_decltype(current_stmt,i);
String coltype = ToLower(sqlite3_column_decltype(current_stmt,i));
switch (sqlite3_column_type(current_stmt,i)) {
case SQLITE_INTEGER:
f = sqlite3_column_int64(current_stmt,i);