Re: jdbc connection

From: "Paul Stead" <pstead(at)elementallogic(dot)com>
To: "michel verplancke" <michel(dot)verplancke(at)wanadoo(dot)be>, <pgsql-jdbc(at)postgresql(dot)org>
Subject: Re: jdbc connection
Date: 2003-01-19 20:12:17
Message-ID: BNENLMOEFCOIEGKDJMLLMEABCFAA.pstead@elementallogic.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

Just a real quick look, but it seems to me that you're closing your
connection before you use it....

if( con != null)
{
try { con.close(); } You're closing it
here
catch( Exception e2 ) {}
}
try
{
result = stmt.executeQuery(Valquery); IT's HERE THAT I GET THE
PROBLEM !!!!!!!
}

In response to

Browse pgsql-jdbc by date

  From Date Subject
Next Message Renaud Waldura 2003-01-20 06:51:52 Requiring Ant 1.5 for build breaks JDK 1.1 compatibility
Previous Message Abel Muiño 2003-01-19 20:10:27 Re: jdbc connection