SET MEMOBLOCK Change the block size for memo files ------------------------------------------------------------------------------ Syntax SET MEMOBLOCK TO <nSize> Arguments <nSize> is the memo file block size. The initial memo file block size depends on the RDD. For most drivers that support the .dbt memo file format, it is 512 bytes. However, if you are using BLOB files (.dbv memo file format) via inheritance from the DBFMEMO driver, the default is 1. Description SET MEMOBLOCK is functionally equivalent to calling DBINFO(DBI_MEMOBLOCKSIZE, <nSize>). Refer to this function for more information. SET MEMOBLOCK sets the block size for the memo file associated with the database. Examples . The following example illustrates the SET MEMOBLOCK command: USE Inventor NEW SET MEMOBLOCK TO 256 ? DBINFO(DBI_MEMOBLOCKSIZE) // Result: 256 Files Library is CLIPPER.LIB.
See Also: DBINFO()