Hi,
If you look at their site (http://www.informix.com/answers/english/ierrors.htm):

"-25580 System error occurred in network function.
        A system call has failed. For assistance, contact your system administrator or
        Informix Technical Support."

So it looks like DB specific.

Best of luck,
Piotr

-----Original Message-----
From: A mailing list for Enterprise JavaBeans development
[mailto:[EMAIL PROTECTED]]On Behalf Of Dhanashree Apte
Sent: Tuesday, June 13, 2000 7:38
To: [EMAIL PROTECTED]
Subject: Updating a BLOB field.


Hi All,

I am trying to update a blob field of Informix using PowerTier 5.12, but
i get the following error:

 RemoteException from the server; nested exception is:
java.rmi.RemoteException: ContainerException = name: CSR_ERR,
description: Cursor Error : Number System error occurred in network
function.
Message: -25580, category: 10300, code: 4030, database code: -25580,
index: 0.

Can anybody help me out with this?

I am trying out a simple example: a table with two fields: id(integer)
and txt(text).
I have an EntityBean with id mapped to int and txt mapped to Text data
type of Powertier5.12
The generated code gives me get/set methods for txt with "String"
parameters.
the code segment creating problem is quoted below for your reference:
----------------------------------------------------------------------
try {
IdTxtHome  idTxtHome = (IdTxtHome)
m_clientEJBManager.getHome("IdTxtHome");
IdTxtKey     idTxtKey = new IdTxtKey(7);
IdTxt     idTxtRemote =
(IdTxt)  idTxtHome.findByPrimaryKey(idTxtKey);
System.out.println("In here.. got values\n");
idTxtRemote.setTxt("Tried updating this record using an entity bean.");
} catch(Exception exc) {
    exc.printStackTrace();
}
-----------------------------------------------------------------------

Any help or inputs regarding this will be really helpful.

Thanx in advance,
Dhanashree

===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff EJB-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".

===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff EJB-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".

Reply via email to