[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:
parent
c2fb96c345
commit
bf3b070c70
1 changed files with 20 additions and 20 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue