Closed DierteK closed 4 years ago
Hello,
I want to edit a DBF file and have created the following test script for this purpose:
[...] $table = new \Xbase\WritableTable($filename, null, 'CP1252'); $table->openWrite(); [...] $record->foobar = 111.11; $table->writeRecord();
The problem now is that a string was written in the field "foobar". But I would like to write something there as float.
string
float
Thanks
@DierteK give me the file or $table->version value to reproduce this bug. Which version of php-xbase are you using?
$table->version
php-xbase
I guess it fixed in #92
Hello,
I want to edit a DBF file and have created the following test script for this purpose:
The problem now is that a
string
was written in the field "foobar". But I would like to write something there asfloat
.Thanks