Page 1 of 1

varchar(32000) and zeosdbo

Posted: 20.09.2005, 18:37
by barko
is there any workaround for bug (can't read varchars larger than 255 chars with fpc + lazarus on linux with firebird 1.5.2)?

is there a way for converting varchar(32000) to blob field without loosing data (on the fly)...

is maybe this solution? i have huge project converted from kylix to lazarus and now i have problem with reading varchar larger than 255 chars...

Posted: 23.09.2005, 06:08
by fduenas
Add a new 'large text' field type to the table and then execute this SQL: 'Update table MyNewField := MyOldVarCharField;'

Posted: 24.09.2005, 00:43
by barko
thanks for the tip, works like charm...

Code: Select all

update table set mynewfield = myoldfield;
:) thanks again