AW: JDBC connection leak

2002-03-08 Thread Marc Lehnert
Hi! Problem solved. I removed all the JDBC things and implemented two more finder methods for min and max of date such as: LogFileRow findByMinDateWebsite java.lang.String Thanks. Marc.

AW: JDBC connection leak

2002-03-08 Thread Marc Lehnert
Hi Steve. A conn.commit() is not allowed by the container. Already tried this. Thanks. Marc. -Ursprüngliche Nachricht- Von: Stephen Davidson [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag, 7. März 2002 20:43 An: Orion-Interest Betreff: Re: JDBC connection leak Hi Marc. Maybe try a

RE: JDBC connection leak

2002-03-07 Thread John Creaner
(); stmt.close (); >conn.close(); This means that the connection is now free for the CMT to use again (I THINK ;) john -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Marc Lehnert Sent: 07 March 2002 15:56 To: Orion-Interest Subject: JDBC connection l

Re: JDBC connection leak

2002-03-07 Thread Stephen Davidson
Hi Marc. Maybe try a conn.commit() before conn.close()? -Steve Marc Lehnert wrote: > Hello! > I call the following code in a Message Driven Bean in Orion 1.5.2. After the > "conn.close()" all entity beans I created in some code before are destroyed. > The database is empty. The sql statement ge

JDBC connection leak

2002-03-07 Thread Marc Lehnert
Hello! I call the following code in a Message Driven Bean in Orion 1.5.2. After the "conn.close()" all entity beans I created in some code before are destroyed. The database is empty. The sql statement gets the right result but after the close everything is lost. No error, nothing. Without the clo

Re: JDBC connection pooling and ORION

2001-05-06 Thread Vic Cekvenich
Does the DB Connection pool shrink? Vic - Original Message - From: "Frank LaRosa" <[EMAIL PROTECTED]> To: "Orion-Interest" <[EMAIL PROTECTED]> Sent: Wednesday, April 25, 2001 10:17 PM Subject: Re: JDBC connection pooling and ORION > Like a

Re: JDBC connection pooling and ORION

2001-04-25 Thread Frank LaRosa
H Ngo" <[EMAIL PROTECTED]> To: "Orion-Interest" <[EMAIL PROTECTED]> Sent: Wednesday, April 25, 2001 2:08 PM Subject: JDBC connection pooling and ORION > Can someone tell me how to get JDBC connection pooling to work? > Maybe some examples? I can't find anythin

JDBC connection pooling and ORION

2001-04-25 Thread Hao H Ngo
Can someone tell me how to get JDBC connection pooling to work? Maybe some examples? I can't find anything on connection pooling. I have successfully made a JDBC connection to postgres, but I would like to grab connections from a pool and release to that pool. Help?

com.evermind...HttpIOException and Xerces blocking JDBC Connection

2001-03-23 Thread Michael N. Christoff
I wrote a servlet that parses the input stream of a request in the doPost() method using xerces. If I parse the input stream and then try to use jdbc, the following line stalls: Connection con = DriverManager.getConnection(); After about 5 seconds of waiting for that line to execute, I get the

RE: A newbie question - problems with JDBC-connection

2000-11-28 Thread Kevin Duffey
If you don't mind..can you help explain to me how you even got this far? I just installed Oracle Personal Edition, and I would like to get Orion to pool connections, use a DataSource, and so on. I don't know about using entity beans yet..I don't think EJB 1.1 entity is powerful enough yet..but 2.0

A newbie question - problems with JDBC-connection

2000-11-28 Thread theis . meggerle
Hi! I am pretty new to applicationservers and thus trying the grasp the nuts and bolts. I have just finished a sessionbean (via a servlet) which connects to a database and reads a specified table. Everything works fine the first time a run my servlet. But the second time, I get no connection, e

Re: JDBC Connection problem

2000-07-27 Thread Ishpal
;testusr" > password="testpwd" > /> > > Dave Smith > Senior Team Leader > Aristocrat Technologies Australia Pty Ltd > > mailto:[EMAIL PROTECTED] > > -Original Message- > From: Ishpal [mailto:[EMAIL PROTECTED]] > S

RE: JDBC Connection problem

2000-07-26 Thread Dave Smith
Subject: JDBC Connection problem hello, I'm new here and trying to setup orion server. The problem is with the data-souce.xml My environment is as ... O.S.-- Linux RedHat-6.2, JDK-- jdk1.2.2 from Sun DataBase-- MySQL. JDBC driver-- mm.mysql.jdbc-1.2c In the config/data-sources.xml fi

JDBC Connection problem

2000-07-26 Thread Ishpal
hello, I'm new here and trying to setup orion server. The problem is with the data-souce.xml My environment is as ... O.S.-- Linux RedHat-6.2, JDK-- jdk1.2.2 from Sun DataBase-- MySQL. JDBC driver-- mm.mysql.jdbc-1.2c In the config/data-sources.xml file My configurations are...

Re: JDBC connection port?

2000-06-05 Thread Joseph B. Ottinger
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tue, 6 Jun 2000, Y. J. Chun wrote: > Hi. > I just installed Orion and enabled specified database-source url like > following > url="jdbc:mysql://monac.pe.kr:3306/monac" > > but when i try the ejb demo, (cart product) > it fails reporting > > Cann

JDBC connection port?

2000-06-05 Thread Y. J. Chun
Hi. I just installed Orion and enabled specified database-source url like following url="jdbc:mysql://monac.pe.kr:3306/monac" but when i try the ejb demo, (cart product) it fails reporting > Cannot connect to MySQL server on localhost:1306 what i dont understand is that i speficied PORT number in

jdbc connection

2000-04-07 Thread bradley mclain
hello, i have just been moving a small servlet/jsp app i wrote on nt over to orion on linux (kernel 2.2.14, blackdown jdk 1.2.2RC4). everything has gone well, except i am having some jdbc trouble. on nt i was using sun.jdbc.odbc, but on linux i wanted to try a real type 4 driver. so i got jtur

Getting access to a JDBC Connection Pool from a EJBean

1999-12-21 Thread Gary Albers
Can anybody point me to a code example or perhaps explain how a SessionBean or EntityBean gets access to the JDBC ConnectionPool? I am using MS SQL Server7 and the I-Net Sprinta JDBC Driver. I don't quite understand how to use all the different data sources defined in the data-sources.xml file.