php-xbase icon indicating copy to clipboard operation
php-xbase copied to clipboard

A simple parser for *.dbf files using PHP

Results 17 php-xbase issues
Sort by recently updated
recently updated
newest added

Hello, When I create a table, I am trying to save the file inside a temp file instead of an actual file. I have been playing around with the code...

enhancement

i need to add some column field in same file. can u tell how? cause in README.md i only found add column when create new file. thank you

enhancement

Is there currently any support for indexing (CDX files)? Writing to tables works fine, other than it doesn't update its corresponding .cdx file, which is used by our legacy application....

Changes were made specifically for Visual FoxPro (`TableType::VISUAL_FOXPRO`), but it may work for other Versions too. There are some minor issues with this PR, but they would likely require some...

I've noticed that if a Visual FoxPro DBase file (`TableType::VISUAL_FOXPRO`) already exists, you can open and modify it just fine. This is because its Header Length is already defined. However,...

Hello, I'm trying to use money type in my DBF file, but I tried all TableTypes and still getting this error: Table not supports `Y` column type ```php $header =...

`$record->get('MEMO_COL')` Call to a member function get() on null at vendor/hisamu/php-xbase/src/Record/AbstractRecord.php:135 131▕ if (!$pointer = $this->data[$columnName]) { 132▕ return null; 133▕ } 134▕ ➜ 135▕ return $this->table->memo->get($pointer); 136▕ } 137▕...

Hello, I have previously contacted you in regards to the php-xbase plug-in, and am happy to report that my original efforts to utilise the php-xbase plug-in to send data from...

local.ERROR: Table not supports `F` column type {"exception":"[object] (XBase\\Exception\\ColumnException(code: 0): Table not supports `F` column type at /vendor/hisamu/php-xbase/src/Header/Column/Validator/ChainValidator.php:27) [stacktrace] local.ERROR: Table not supports `B` column type {"exception":"[object] (XBase\\Exception\\ColumnException(code: 0): Table...

How to set encoding or Language ID on create dbf file ?