The Record (computer science) reference article from the English Wikipedia on 24-Apr-2004
(provided by Fixed Reference: snapshots of Wikipedia from wikipedia.org)

Record (computer science)

In computer science, a record can be any of at least two different things.

The most common meaning is simply "an item in a database". There is a wide variety of such "records", but the most common type (the one relational databases support) is an instance of the other kind of record.

The other meaning of "record" is "an aggregation of several items of possibly different types", with the implication that there are many records containing the same types of items. Generally, the items in a record are related, all describing different properties of a single conceptual object. C calls these "structs"; object-oriented languages often keep their records hidden inside "objects", or "class instances"; languages in the ML family have their tuples. COBOL was the first programming language to support records directly; Algol got it from COBOL, and Pascal got it, more or less indirectly, from Algol.

This article is a stub. You can help Wikipedia by expanding it.