flatfile
A flatfile is a plain text file that stores data in a simple, tabular form without the use of a database management system. In its common form, each line represents a record and fields within the line are separated by a delimiter or occupy fixed positions. Flatfiles are designed for straightforward storage and easy interchange of structured data.
Common formats include delimited files such as CSV (comma-separated values), TSV (tab-separated values), and other delimiters,
Typical uses and advantages: lightweight data exchange between systems, simple configuration files, logs, and archival records.
In practice, flatfiles are often loaded into a database or parsed by applications to populate structured data