|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2007-08-09 19:04 UTC] roberto at spadim dot com dot br
Description:
------------
sometimes i get 520 size of date field, that's wrong since i can open files on clipper
i changed source to set field length to 8 and precision to 0 when type of field is 'D' and it's work, please checkit
Reproduce code:
---------------
some dbf files have problem
Expected result:
----------------
header information of date always be 8 length
Actual result:
--------------
520 length in some cases
check what i do: dbf_head.c
line ~160
switch (dbf->db_type) {
case 'N':
case 'F':
dbf->db_flen = dbfield.dbf_flen[0];
dbf->db_fdc = dbfield.dbf_flen[1];
break;
=> case 'D':
=> dbf->db_flen = 8;
=> break;
default:
dbf->db_flen = get_short(dbfield.dbf_flen);
break;
}
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 04:00:02 2025 UTC |
hello, the same error occur now for logic data (boolean) [0] => Array ( [name] => SUSPENSO [type] => boolean [length] => 34817 <========= should be 1 [precision] => 0 [format] => %34817s [offset] => 1 ) [1] => Array ( [name] => COD_CAD [type] => number [length] => 9 [precision] => 0 : ....