[GB.DB.SQLITE3]

* BUG: Handle double quotes in table schemas, when detecting auto-increment
  fields.


git-svn-id: svn://localhost/gambas/trunk@7534 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2015-12-22 00:39:47 +00:00
parent c2fb96c345
commit bf3b070c70

View file

@ -1814,7 +1814,7 @@ static int field_info(DB_DATABASE *db, const char *table, const char *field, DB_
while (p < p2 && *p == ' ')
p++;
if (*p == '\'')
if (*p == '\'' || *p == '"')
p++;
len = strlen(_fieldName);