dbase
dbase copied to clipboard
Library for processing dbase / xbase / dbf database files
I made a method for renaming a field. I will add a pull request for it. It will make it possible to do this: `$builder = Builder::fromFile('file.dbf')->renameField("name", "newname")->build('file2.dbf');` Instead of...
I can connect to the dbf when it's in the same directory, but I get an error when the file is in another network unit. The error I get is:...
The dbase.com say: "Number stored as a string, **right justified, and padded with blanks to the width of the field.**" http://www.dbase.com/Knowledgebase/INT/db7_file_fmt.htm I interpreted that the 100 should be stored as...
Hello, thank's for these awesome package! Is it possible to specify the charset for the file? My file is ISO-8859-1. At the moment I have to use utf8_encode($record['xxx']); Thanks an...