Hi, I need some help,
I am having difficulty passing information between
a BLOB field in a database and an array in memory and would appreciate it if
someone familiar with the process would provide me with some sample
code.
The array I have is "Program Data", as follows
:-
type
DataLocations =
record
Data :
array[1..6] of byte; { Can I
define the array as byte or should I pack two bytes into integers
?}
end;
var
ProgramData
: array 1..200 of DataLocations;
When accessing any record in the
database I need to get the data in its Blob field into Program Data,
maybe modify it, then
put it back when done with the record.
I believe I have to first Create then later
Destroy the buffer, but don't really understand how this is done. I imagine it's
pretty simple but its got me beat.
TIA
Colin
|
- [DUG]: Applying a font to a printer Guy Brown
- RE: [DUG]: Applying a font to a printer Cheng Wei
- Re: [DUG]: Applying a font to a printer Guy Brown
- Re: [DUG]: Streaming Data to/from BLOBs Colin R Dillicar
- Re: [DUG]: Streaming Data to/from BLOBs Colin R Dillicar