[GB.DB.SQLITE3]
* BUG: Interpret unknown SQL datatypes as "String" instead of using garbage. git-svn-id: svn://localhost/gambas/trunk@7230 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
parent
3818ea749e
commit
a9e1b8eb48
1 changed files with 2 additions and 0 deletions
|
@ -224,6 +224,8 @@ GB_TYPE sqlite_get_type(const char *type, int *length)
|
|||
{
|
||||
gtype = DB_T_BLOB;;
|
||||
}
|
||||
else
|
||||
gtype = GB_T_STRING;
|
||||
|
||||
if (gtype == GB_T_STRING && type && length != NULL)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue