Subject RE: [IBO] AV for CreateBlobStream?
Author IBO Support List
Barry,

There was a bug that got introduced a little while back but that was quickly
addressed. Would you please get the latest and test with it to make sure
this is an issue distinct from that one?

Thanks,
Jason

-----Original Message-----
From: IBObjects@yahoogroups.com [mailto:IBObjects@yahoogroups.com] On Behalf
Of ifitsx
Sent: 19 January 2012 12:09 PM
To: IBObjects@yahoogroups.com
Subject: [IBO] AV for CreateBlobStream?

with v4.9.14.b35 installed manually: CRT, CDT, XDT

DXE2/sp3, Win7 X64/sp1, target Win32

Using TDataSource, TIBODatabase, TIBOQuery:

I've been using this app for years, and finally 'succeeded' in moving it to
DXE2.

Starts ok, loads all virtualtree nodes.

However,

BlobStrmLoad :=
qryForThisNote.CreateBlobStream(qryForThisNote.FieldByName('NOTES'),
bmRead);

returns

Project <myapp> raised exception class $C0000005 with message 'access
violation at 0x005f3079: read of address 0x00000000

yet this does not return error and works ok

BlobStrmSave :=
qryForThisNote.CreateBlobStream(qryForThisNote.FieldByName('NOTES'),
bmWrite);

Barry