mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
.Sqlite3: ToLower for coltype
git-svn-id: svn://ultimatepp.org/upp/trunk@2407 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
3b3e22981f
commit
76e951d8bd
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue