Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Urgent,please Help !!Any one know about error code 10091?

122 views
Skip to first unread message

Jakcie

unread,
Feb 22, 2002, 8:23:15 PM2/22/02
to

Hello All,
I have made a Java Server Page system with IB6 as backend.When more then one client in different PC accessing the system,
at certain time the system will raise 10091 error,which is
a interbase bug mentioned in the error message,then the
system will hang.

Can anyone help me?

My system config is as follow:

Window 2000 Advanced server
Jdk1.3.0
Tomcat-3.2.3
IB 6.0 open source
Interclient 2.0

Thank you very much in advance!

Craig Stuntz

unread,
Feb 25, 2002, 12:34:22 PM2/25/02
to
In article <3c76ef03$1_2@dnews>, jack...@powernet.com says...

>
> I have made a Java Server Page system with IB6 as backend.When more then one client in different PC accessing the system,
> at certain time the system will raise 10091 error,which is
> a interbase bug mentioned in the error message,then the
> system will hang.

10091 is a Windows error message, which IB is passing along to you.
NET HELPMSG 10091 yields:

WSAStartup cannot function at this time because the underlying system it
uses to provide network services is currently unavailable.

I haven't a clue what this means.

-Craig

--
Craig Stuntz (TeamB) · Vertex Systems Corp. · Columbus, OH
Delphi/InterBase WebLog: http://delphi.weblogs.com
InterBase PLANalyzer (Free IB optimization tool):
http://delphi.weblogs.com/IBPLANalyzer

Achim Kaiser

unread,
Feb 25, 2002, 2:16:27 PM2/25/02
to
Some more information :

WSASYSNOTREADY (10091)

Network subsystem is unavailable.

This error is returned by WSAStartup if the Windows Sockets implementation


cannot function at this time because the underlying system
it uses to provide network services is currently unavailable.

Users should check:
· that the appropriate Windows Sockets DLL file is in the current path,
· that they are not trying to use more than one Windows Sockets
implementation
simultaneously.

If there is more than one WINSOCK DLL on your system,
be sure the first one in the path is appropriate for the network subsystem
currently loaded.

· the Windows Sockets implementation documentation
to be sure all necessary components are currently
installed and configured correctly.

HTH
Achim


Jackie

unread,
Feb 25, 2002, 11:39:44 PM2/25/02
to

Hello Friend,

Thanks for your I help,but I am sorry that the error code
should be 10019.Sorry for the typo.

Can you tell me what 10019 error means and how to tackle it?

Or where can I get such information so I can check it myself?

Thank you very much in advance!

Craig Stuntz <cstuntz@no_spam.vertexsoftware.com> wrote:
>In article <3c76ef03$1_2@dnews>, jack...@powernet.com says...
>>
>> I have made a Java Server Page system with IB6 as backend.When more then one client in different PC accessing the system,
>> at certain time the system will raise 10091 error,which is
>> a interbase bug mentioned in the error message,then the
>> system will hang.
>
> 10091 is a Windows error message, which IB is passing along to you.
>NET HELPMSG 10091 yields:
>
>WSAStartup cannot function at this time because the underlying system it
>uses to provide network services is currently unavailable.
>
> I haven't a clue what this means.
>
> -Craig
>
>--

> Craig Stuntz (TeamB) ?Vertex Systems Corp. ?Columbus, OH

Craig Stuntz

unread,
Feb 26, 2002, 10:03:52 AM2/26/02
to
In article <3c7b1190$1_2@dnews>, jack...@powernet.com says...

>
> Thanks for your I help,but I am sorry that the error code
> should be 10019.Sorry for the typo.

"10019 is not a valid Windows 2000 network message number."

I think that's another typo.

-Craig

--
Craig Stuntz (TeamB) · Vertex Systems Corp. · Columbus, OH

Jackie

unread,
Feb 26, 2002, 8:29:08 PM2/26/02
to

Hello,

>
>"10019 is not a valid Windows 2000 network message number."
>
> I think that's another typo.

10019 is not a typo,if interbase exception is correct.
Below is the error message I encountered:

Refer to bug code 10019.
See API reference for exception interbase.interclient.BugCheckException
at interbase.interclient.RecvMessage.createSQLException(interbase/interc
lient/RecvMessage.java:667)
at interbase.interclient.RecvMessage.makeSQLException(interbase/intercli
ent/RecvMessage.java:593)
at interbase.interclient.RecvMessage.get_EXCEPTIONS(interbase/interclien
t/RecvMessage.java:554)
at interbase.interclient.Statement.remote_EXECUTE_QUERY_STATEMENT(interb
ase/interclient/Statement.java:175)
at interbase.interclient.Statement.executeQuery(interbase/interclient/St
atement.java:154)

I found the source file but cannot find out what happened still.
Could you help me?

Thank you very much in advance!

Jackie

Craig Stuntz

unread,
Feb 27, 2002, 10:30:18 AM2/27/02
to
In article <3c7c3664$1_1@dnews>, jack...@powernet.com says...

>
> 10019 is not a typo,if interbase exception is correct.
> Below is the error message I encountered:
>
> Refer to bug code 10019.
> See API reference for exception interbase.interclient.BugCheckException
> at interbase.interclient.RecvMessage.createSQLException(interbase/interc
> lient/RecvMessage.java:667)

Ah. That's different. Having the full message helps!

Does this help?

http://community.borland.com/article/0,1410,25757,00.html

Jackie

unread,
Feb 27, 2002, 12:16:17 PM2/27/02
to

Hello Craig,

This article helps me a bit but another question raises:

>If an application invokes COMMIT using SQL rather than using >the JDBC
>Connection.commit() method, the transaction states of >interclient and
>interbase will not be in sync. So a transaction should be >committed using:

>Connection.commit();

>and not by passing SQL: Statement.executeUpdate ("COMMIT");

But I have never have a line using Statement.executeUpdate("COMMIT")! All SQLs of my project are in storeproc and I called them by opening a java.sql.ResultSet then
rs.execute("select * from mystoreproc) to return the values
from store proc.

Will there be more information concerning this error?Otherwise
my JSP project will have problem when traffic increase that
the chance of concurrent access will also increase.

Thank you very much in advance.

Craig Stuntz <cstuntz@no_spam.vertexsoftware.com> wrote:
>In article <3c7c3664$1_1@dnews>, jack...@powernet.com says...
>>
>> 10019 is not a typo,if interbase exception is correct.
>> Below is the error message I encountered:
>>
>> Refer to bug code 10019.
>> See API reference for exception interbase.interclient.BugCheckException
>> at interbase.interclient.RecvMessage.createSQLException(interbase/interc
>> lient/RecvMessage.java:667)
>
> Ah. That's different. Having the full message helps!
>
> Does this help?
>
>http://community.borland.com/article/0,1410,25757,00.html
>
> -Craig
>
>--

> Craig Stuntz (TeamB) ?Vertex Systems Corp. ?Columbus, OH

Craig Stuntz

unread,
Feb 27, 2002, 3:30:43 PM2/27/02
to
In article <3c7d1461$1_1@dnews>, Jack...@powernet.com says...

>
> Will there be more information concerning this error?Otherwise
> my JSP project will have problem when traffic increase that
> the chance of concurrent access will also increase.

I don't know. I don't have a lot of experience with JDBC. I'd
suggest posting a complete description of your problem in this context
to borland.public.interbase.interclient.

HTH,

-Craig

--
Craig Stuntz (TeamB) · Vertex Systems Corp. · Columbus, OH

0 new messages