Package Information |
Summary |
dBase database file access functions |
Maintainers |
Alan Knowles <
alan at akbkhome dot com >
(lead)
[details]
jim winstead <
jimw at apache dot org >
(lead)
[details]
Christoph M. Becker <
cmb at php dot net >
(lead)
[details]
|
License |
PHP |
Description |
These functions allow you to access records stored
in dBase-format (dbf) databases.
There is no support for indexes or memo fields.
The databases are automatically locked with blocking flock()s.
dBase files are simple sequential files of fixed length records.
Records are appended to the end of the file and deleted records
are kept until you call dbase_pack(). |
Homepage |
https://github.com/php/pecl-database-dbase
|
Release notes
Version 7.1.0RC1
(beta)
|
New features
- Full fledged arginfo is available under PHP 8 (Remi Collet) - Calling dbase functions with wrong parameter types/values throws TypeExceptions and ValueExceptions, respectively, instead of raising warnings under PHP 8 (Remi Collet)
Bug Fixes
- Fixed #80156 (Incomplete records may be written) |