Search found 5 matches

by raistware
08.06.2014, 11:59
Forum: ZeosLib 7.1 stable Forum
Topic: Bug introduced in r3119
Replies: 1
Views: 550

Bug introduced in r3119

Commit r3119 introduced a bug in branch 7.1-patches at file ZCompatibility.pas making LConvEncoding being included twice, attached patch fixes the issue.
by raistware
25.09.2012, 15:58
Forum: ZeosLib 7.0 Beta Forum
Topic: [patch_done] Invalid size of string fields
Replies: 8
Views: 2890

It helps, thanks a lot.
by raistware
25.09.2012, 14:54
Forum: ZeosLib 7.0 Beta Forum
Topic: [patch_done] Invalid size of string fields
Replies: 8
Views: 2890

Thanks, I will try
by raistware
25.09.2012, 13:03
Forum: ZeosLib 7.0 Beta Forum
Topic: [patch_done] Invalid size of string fields
Replies: 8
Views: 2890

Well, so for FieldType ftString I need to do FieldDefs[FieldIndex].Size / 4 to get real printed characters? Why not use other field (like precision) to store 'extended' size and let FieldDefs[].Size store just what field metadata should have? As far as I know if I create a table like: Create table t...
by raistware
25.09.2012, 10:07
Forum: ZeosLib 7.0 Beta Forum
Topic: [patch_done] Invalid size of string fields
Replies: 8
Views: 2890

[patch_done] Invalid size of string fields

ZQuery.FieldDefs gets incorrect size when fieldtype is ftString, checked with firebird-2.5.

Size is incorrectly multiplied by 4, so if table field is defined at database as varchar(10), ZQuery.FieldDefs tells as if defined varchar(40).