Next Previous Contents

1. BLOB (Binary Large OBjects)

This chapter is intended to give you a quick introduction to BLOBs, their interface as proposed for PHPLIB.

1.1 Defining the problem

Achieving the goal of creating portable applications is hindered by the fact that no portable way of storing large amount of data exists.

Every database vendor defines his own application programming interface (API) to access binary large objects, or uses other, non-standard ways to enable the use of BLOBs.

Enhancing the existing vendor neutral support for databases in PHPLIB to also include BLOB support could be a short-term solution to the problem.

1.2 Proposed extension API

An overview over the function calls follows.

blob_create()

This will create a new BLOB and return its ID. If it is impossible to create a new BLOB, this function will halt() the execution and generate an error message.

blob_open($ID)

Opens the specified BLOB for reading and writing and returns true or false on success or failure, respectively.

blob_close($ID)

Closes the referenced BLOB. Do not forget this - it might be necessary for some databases or you might face data loss.

blob_delete($ID)

Deletes the specified BLOB. All associated resources are freed. The BLOB must not be referenced at a later time.

blob_read($ID)

Reads the entire data of BLOB and returns it.

blob_write($ID, $DATA)

Overwrites the whole BLOB with $DATA.

1.3 Design notes

The goal was to create a vendor neutral API which could be implemented easily with most databases. Eventually, it should provide a "fallback" mode enabling the user to utilize BLOBs even if the database does not support BLOBs natively. Keep in mind that it should be able to cover as many databases as possible and therefore only implements a subset of functionality provided by modern databases.


Next Previous Contents

Banner.Novgorod.Ru