[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:
Benoît Minisini 2017-01-30 21:37:56 +00:00
parent 33ffab3071
commit adc86b9e39

View file

@ -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(" ");