[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:
Benoît Minisini 2015-08-20 13:36:17 +00:00
parent 3818ea749e
commit a9e1b8eb48

View file

@ -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)
{