Question about option "AsyncNotification"
Posted: Tue 27 Jul 2010 14:59
In my application i try use queue with multiple consumer and i receive exception as described in http://www.devart.com/forums/viewtopic. ... tification
Initialization code:
After run i receive exception ORA-25257. Its a normal and i must use another way for use AsyncNotification ?
ODAC = 6.90.0.58 Delphi 2010 Oracle 11gR2 (Win7 x64)
Thanks.
Initialization code:
Code: Select all
orsn1: TOraSession;
orq1: TOraQueue;
...
procedure TForm16.FormCreate(Sender: TObject);
begin
orq1.DequeueOptions.ConsumerName := 'PSO_SOO';
orq1.AsyncNotification := True;
orsn1.Connected := True;
end;
ODAC = 6.90.0.58 Delphi 2010 Oracle 11gR2 (Win7 x64)
Thanks.