Java threads & deamons
From: AlexLi (magrone_at_hotmail.com)
Date: 05/05/04
- Next message: Manolis Christodoulou: "Re: Firebird"
- Previous message: Martin Winkelbauer: "Re: JDBC Competitors?"
- Next in thread: the spammers have won :-(: "Re: Java threads & deamons"
- Reply: the spammers have won :-(: "Re: Java threads & deamons"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: 5 May 2004 09:16:04 -0700
Hi.
We are trying to make a "batch" execution in a Oracle DB 9.2.4 with
the java.lang.threads. In other word we want to execute a
procedure/package without waiting the result from the (for example)
SQL*Plus propmt.
The java class we have created has this piece of code inside:
. . .
Thread thread = new forkato();
thread.setDaemon(true);
thread.start();
. . .
but the class don't terminate, waiting the thread forkato ending: as
opposed as we want !
Anybody has used this method ?
thanks.
- Next message: Manolis Christodoulou: "Re: Firebird"
- Previous message: Martin Winkelbauer: "Re: JDBC Competitors?"
- Next in thread: the spammers have won :-(: "Re: Java threads & deamons"
- Reply: the spammers have won :-(: "Re: Java threads & deamons"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|