Access to internal buffer of record

Discussion of open issues, suggestions and bugs regarding ODAC (Oracle Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
LarsDima
Posts: 4
Joined: Sat 20 Mar 2010 16:50

Access to internal buffer of record

Post by LarsDima » Sat 20 Mar 2010 17:00

hello
i can get access to internal buffer of record?
I want to copy the entire record in a memory. Is it possible to control the buffer record?

bork
Devart Team
Posts: 649
Joined: Fri 12 Mar 2010 07:55

Post by bork » Tue 23 Mar 2010 07:32

Hello

You can get internal buffer of record but it contains data in internal format with pointers to the internal objects. This buffer will be useless for you. Therefore we don't advise to use internal buffer of record in your application directly.

LarsDima
Posts: 4
Joined: Sat 20 Mar 2010 16:50

Post by LarsDima » Tue 23 Mar 2010 15:46

bork wrote:Hello

You can get internal buffer of record but it contains data in internal format with pointers to the internal objects. This buffer will be useless for you. Therefore we don't advise to use internal buffer of record in your application directly.
thank for your reply.
My application implements data replication. For comparison, I plan to calculate CRC32 for each record (which is not much). When will the differences, you need to pack records and send to the recipient. The receiver decompresses the raw format recording and adds the record.

Post Reply