DESCR-dbase 777 B

123456789101112131415161718
  1. These functions allow you to access records stored in dBase-format
  2. (dbf) databases.
  3. There is no support for indexes or memo fields. There is no support
  4. for locking, too. Two concurrent webserver processes modifying the
  5. same dBase file will very likely ruin your database.
  6. dBase files are simple sequential files of fixed length records.
  7. Records are appended to the end of the file and delete records are
  8. kept until you call dbase_pack().
  9. We recommend that you do not use dBase files as your production
  10. database. Choose any real SQL server instead; MySQL or Postgres are
  11. common choices with PHP. dBase support is here to allow you to
  12. import and export data to and from your web database, because the
  13. file format is commonly understood by Windows spreadsheets and
  14. organizers.