Using Streams

From RAD Studio
Jump to: navigation, search

Go Up to RTL


Streams are classes that let you read and write data. They provide a common interface for reading and writing to different media such as memory, strings, sockets, and BLOB fields in databases. There are several stream classes, which all descend from TStream. Each stream class is specific to one media type. For example, TMemoryStream reads from or writes to a memory image, TFileStream reads from or writes to a file.

Topics

The following topics describe the methods common to all stream classes:

See Also

Code Examples