[GB.DB.MYSQL]
* BUG: Use MEDIUMTEXT instead of TEXT for unlimited text fields, so that the maximum length is 16MB and not 64K. git-svn-id: svn://localhost/gambas/trunk@8072 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
parent
33ffab3071
commit
adc86b9e39
1 changed files with 1 additions and 1 deletions
|
@ -1740,7 +1740,7 @@ static int table_create(DB_DATABASE *db, const char *table, DB_FIELD *fields, ch
|
|||
|
||||
break;
|
||||
|
||||
default: type = "TEXT"; break;
|
||||
default: type = "MEDIUMTEXT"; break;
|
||||
}
|
||||
|
||||
DB.Query.Add(" ");
|
||||
|
|
Loading…
Reference in a new issue