xHarbour Reference Documentation > Function Reference |
Reads the contents of a memo field holding a binary large object (BLOB).
BlobGet( <nFieldPos>, [<nStart>], [<nCount>] ) --> xBlobData
Note: Both parameters, <nStart> and <nCount>, are ignored if the BLOB does not contain a character string.
The function returns the BLOB data loaded into memory. The data type of a BLOB depends on the stored BLOB. It can be determined using function Valtype(). If the indicated field at position <nFieldPos> is not amemo field, the return value is NIL.
BlobGet() exists for compatibility reasons. It does the same as function FieldGet() but is restricted to memo fields.
Note: the file Blob.ch must be #included for BlobGet() to work.
See also: | BlobDirectGet(), FieldGet() |
Category: | Blob functions , Database functions |
Header: | blob.ch |
Source: | rdd\dbcmd.c, rdd\dbffpt\dbffpt1.c |
LIB: | xhb.lib |
DLL: | xhbdll.dll |
http://www.xHarbour.com