.dbf
   HOME

TheInfoList



OR:

The .dbf file extension represents the
dBase dBase (also stylized dBASE) was one of the first database management systems for microcomputers and the most successful in its day. The dBase system includes the core database engine, a query system, a forms engine, and a programming language ...
database file. The file type was introduced in 1983 with dBASE II. The file structure has evolved to include many features and capabilities. Several additional file types have been added, to support data storage and manipulation. The current .dbf file level is called ''Level 7''. The .dbf format is supported by a number of
database In computing, a database is an organized collection of data stored and accessed electronically. Small databases can be stored on a file system, while large databases are hosted on computer clusters or cloud storage. The design of databases ...
products.


Overview

The original
dBASE dBase (also stylized dBASE) was one of the first database management systems for microcomputers and the most successful in its day. The dBase system includes the core database engine, a query system, a forms engine, and a programming language ...
database was known as Project Vulcan and was started by Wayne Ratliff in 1978. At the time the file that held the data was a simple table that could have data added, modified, deleted, or printed using the
ASCII ASCII ( ), abbreviated from American Standard Code for Information Interchange, is a character encoding standard for electronic communication. ASCII codes represent text in computers, telecommunications equipment, and other devices. Because ...
characters set. As the product became more popular, the underlying file type .dbf was expanded, and additional files were added to increase the capabilities of the database system. Despite
dBASE dBase (also stylized dBASE) was one of the first database management systems for microcomputers and the most successful in its day. The dBase system includes the core database engine, a query system, a forms engine, and a programming language ...
being an IDE (integrated development environment), a database system, a compiler, and a database application builder, the original .dbf file was still used for the actual data storage mechanism.


History of the file format


Classical .dbf

;Project Vulcan – CP/M (Level 1) : There is no publicly available information on the original layout. What is known is that it was a simple table which allowed adding, deleting, modifying, and outputting ASCII data. It was written for 8-bit machines that ran
CP/M CP/M, originally standing for Control Program/Monitor and later Control Program for Microcomputers, is a mass-market operating system created in 1974 for Intel 8080/ 85-based microcomputers by Gary Kildall of Digital Research, Inc. Initial ...
. ;dBASE II – MS-DOS (Level 2) :dBASE II was the first major release by Ashton-Tate. It had many advancements beyond the simple table structures of Project Vulcan. :* Still written for 8-bit computing :* Increased the number of fields from 16 to 32 :* Introduced a SORT routine :* 16-bit version finally released in April 1983 (version 2.4) ;dBASE III – MSDOS (Level 2sh) :dBASE III (version "1.0"), was released in June 1984. This was a fully 16-bit application. dBASE III's file format is a transitional step between dBASE II and dBASE III+.


Modern dBASE

;dBASE III+ – MS-DOS (Level 3) :dBASE III+ was released in December 1985. It ushered the modern dBASE file format. It is incompatible with dBASE III's file format. ;dBASE IV – MS-DOS (Level 4) :* 1.0 x322 Oct 1988 :* 1.0 x55 Mar 1993 – dBASE Compiler :* 2.0 x12 Oct 1993 Includes fixes in dBASE IV v2.0 x16 above (not x17 i.e. not VLM compatible, dB5D exe's are compatible). It's also a new version that contain new features not in the V1.0 product: :** 32-bit generation :** Auto compiling and linking :** Smaller .EXE size :** Menu-driven user interface :** Linker can produce combined .DBO output :** Linker can produce a .MAP file :** Compiler supports alternate date formats :** command-line switches accept wildcards in file names. ;dBASE V – MS-DOS (Level 5) : 1.0 x46 Jun 1994 ; BDE – Borland Database Engine 2.52 This was the last update to the 16-bit version of the Borland Database Engine (BDE). dBASE V – MS-Windows (Level 5) * 5.5 b673 Jul 1995


xBase

xBase xBase is the generic term for all programming languages that derive from the original dBASE ( Ashton-Tate) programming language and database formats. These are sometimes informally known as dBASE "clones". While there was a non-commercial predec ...
is a name applied to clones of the dBase, typically dBASE III+–V. Most xBase programs either use the format directly or uses a derived format with custom extensions. Erik Bachmann maintains an open-licensed description of these formats.


dBASE 7

The Level 7 structure is the latest supported by
dBASE dBase (also stylized dBASE) was one of the first database management systems for microcomputers and the most successful in its day. The dBase system includes the core database engine, a query system, a forms engine, and a programming language ...
and BDE. It is incompatible with the previous file format, and is supported by few third-party applications. dBASE 7 – MS-Windows (Level 7) * 7.0 b1345 Dec 1997 Full 32 bit version for Win 95/NT Level 7 brought many improvements. The maximum length for field names increased from 10 to 31 characters. Some new fields types were added, such as the auto-increment field, which prevents creation of duplicate record numbers in the same table. BDE version 5.1.0 Significant improvements over the prior releases. There are also some limitations with regards to what the BDE can handle.


File format of Level 5 DOS dBASE

The "modern dBASE" III+–V is the most common dBASE file format found in the wild. In "modern dBASE", a .dbf file consists of a header, the data records, and the end-of-file marker. * The header contains information about the file, such as the number of records and the number of types of fields used in the records. * The records contain the actual data. * The end of the file is marked by a single byte, with value .


File header


Field descriptor array


Database records

Each record begins with a 1-byte "deletion" flag. The byte's value is a space (), if the record is active, or an asterisk (), if the record is deleted. Fields are packed into records without field separators or record terminators. All field data is ASCII. Depending on the field's type, the application imposes further restrictions:


Memo fields and the .DBT file

A memo (.DBT) file consists of blocks numbered sequentially (0,1,2, and so on). SET BLOCKSIZE determines the size of each block. The first block, block 0, is the memo file header. Each memo field of each record in the .DBF file contains the number of the block (in ASCII) where the memo field begins. If the memo field contains no data, the .DBF file contains blanks () rather than a number. When a memo field's content changes, its block number may also change. I.e. the memo gets relocated. In that case, the number in the .DBF file gets updated. In dBASE III PLUS, the space consumed by deleted text in a memo field cannot be reused — the .DBT file size grows each time text is added, even if other text has been deleted. dBASE for DOS may reuse that space for new text. dBASE IQ PLUS always appended new text to the end of the .dbt file.


Other file types found in dBASE

dBASE dBase (also stylized dBASE) was one of the first database management systems for microcomputers and the most successful in its day. The dBase system includes the core database engine, a query system, a forms engine, and a programming language ...
defines many types of files. It also recognizes some operating system files and files from other products. The table below lists the most commonly used formats first. It was compiled from the documentation of dBASE III+, dBASE IV, and dBASE CLASSIC.


See also

* * *


References


Further reading

* * {{cite book , url=https://books.google.com/books?id=2uy5NlyIzmkC&q=dbf+dbase&pg=PA398 , title=Encyclopedia of Microcomputers: Volume 4 - Computer-Related Applications: Computational Linguistics to dBase , author= Allen Kent, James G. Williams , date=5 October 1989 , page=398 , isbn=9780824727031


External links


FoxBase, dBASE III/IV file format specification
(retrieved 6 August 2018) Computer file formats