[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Load a parameter value from file
Source position: db.pas line 1203
public procedure TParam.LoadFromFile( |
const FileName: string; |
BlobType: TBlobType |
); |
FileName |
|
Name of existing file to load blob data from. |
BlobType |
|
New value for DataType |
LoadFromFile can be used to load a BLOB-type parameter from a file named FileName. The BlobType parameter can be used to set the exact data type of the parameter: it must be one of the BLOB data types. This function simply creates a TFileStream instance and passes it to TParam.LoadFromStream.
If the specified FileName is not a valid file, or the file is not readable, an exception will occur.
|
Load a parameter value from stream |
|
|
Valid BLOB fieldtypes |
|
TParam.SaveToFile |