ODAC 6.25 class N_23 with message ‘Net error 204’

Discussion of open issues, suggestions and bugs regarding ODAC (Oracle Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
subsky
Posts: 1
Joined: Mon 28 Jul 2008 06:40

ODAC 6.25 class N_23 with message ‘Net error 204’

Post by subsky » Mon 28 Jul 2008 06:53

I’ve got a Blob field on OraQuery AfterScroll Event code as below

Code: Select all

Procedure TMainForm.oraqryTestAfterScroll(DataSet: TDataSet);
Var
	ID: Integer;
Begin
	ID := DataSet.FieldByName(‘PIC_ID’).AsInteger;
	qryPIC.Close;
	qryPIC.SQL.Text := Format(‘SELECT PIC_ID, PIC FROM PIC_INFO WHERE PIC_ID=%d’, [ID]);
	qryPIC.Open;
	End;
so got exception:
Raised exception class N_23 with message ‘Net error 204’
then cannot connect oracle
P.S: ORACLE version is 9.2i

Thanks for help.
subsky

Plash
Devart Team
Posts: 2844
Joined: Wed 10 May 2006 07:09

Post by Plash » Thu 31 Jul 2008 09:01

We could not reproduce the problem. Please send to odac*devart*com a complete small sample that demonstrates the problem, including the script for creating database objects.

Please specify the exact ODAC version with the build number.

Post Reply