Hello Kirill<div><br></div><div>guess what? I changed my code to use a connection pool, but it was still failing. So, i started to think the problem was the jdbc driver (postgresql-8.4-701.jdbc3.jar).I was testing PostgreSQL in windows XP sp3. I changed to windows 2k3 and everything's working fine now! It seems it was an issue with Windows XP</div>

<div><br></div><div>I tested it with and without the connection pool. Both ways worked, but i left the connection pool.</div><div><br></div><div>Thanks everyone for your suggestions!</div><div><br></div><div>Best regards</div>

<div>Fernando<br><br><div class="gmail_quote">On Thu, Nov 12, 2009 at 9:49 AM, Fernando Tong <span dir="ltr"><<a href="mailto:nandorov@gmail.com">nandorov@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

Hello Kirill,<div><br></div><div>thanks for your suggestions. I'll try to change my application (j2se) to make it work with a connection pool.</div><div><br></div><div>Best regards</div><div><br></div><div>Fernando<br>


<br><div class="gmail_quote"><div><div></div><div class="h5">On Thu, Nov 12, 2009 at 3:01 AM, Kirill Zinov <span dir="ltr"><<a href="mailto:kirill.zinov@gmail.com" target="_blank">kirill.zinov@gmail.com</a>></span> wrote:<br>

</div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div></div><div class="h5">



  
  

<div bgcolor="#ffffff" text="#000000">
Hello Fernando,<br>
<br>
Looks like something has not been released after you closed connection.
This may happen due to java native. I mean garbage collector approach
to free the objects. If you'll use a proper connection pool it will
take care of the connections re-usage and will speed up your
application.<br>
<br>
When I began my Java coding I tried a low level approach too. Thanks to
my friend with strong skills in j2ee, I have realized the benefits from
Hibernate and other frameworks faster.<br>
<br>
Take a look at Hibernate: <a href="https://www.hibernate.org/" target="_blank">https://www.hibernate.org/</a><br>
<br>
There is a spatial extension: <a href="http://www.hibernatespatial.org/" target="_blank">http://www.hibernatespatial.org/</a><br>
<br>
I didn't try spatial extension as I wrote before. Even if you will
decide not to use Hibernate, I suggest you read a few good articles
about connection pooling. It’s a faster way to post/get data because of
the connections re-usage. Actually this is a de facto standard in Java
world.<br><font color="#888888">
<br>
Kirill,</font><div><br>
<br>
Fernando Tong wrote:
<blockquote type="cite">Hello Kiril,
  <div><br>
  </div>
  <div>I'm afraid i'm not using a connection pooling, just an static
way to load the drivers</div>
  <div><br>
  </div>
  <div>
  <div>public class PgSQLDBConn {</div>
  <div><br>
  </div>
  <div><span style="white-space:pre"> </span>static
{</div>
  <div><span style="white-space:pre"> </span>try
{</div>
  <div><span style="white-space:pre"> </span>Class.forName("org.postgresql.Driver");</div>
  <div><br>
  </div>
  <div><span style="white-space:pre"> </span>}
catch (Exception e) {</div>
  <div><span style="white-space:pre"> </span>System.out.println(e.getMessage());</div>
  <div><span style="white-space:pre"> </span>}</div>
  <div><span style="white-space:pre"> </span>}</div>
  <div><br>
  </div>
  <div><br>
  </div>
  <div><span style="white-space:pre"> </span>public
Connection getConnection() {</div>
  <div><span style="white-space:pre"> </span>Connection
connection = null;</div>
  <div><span style="white-space:pre"> </span>try
{</div>
  <div><span style="white-space:pre"> </span>connection
=
DriverManager.getConnection("jdbc:postgresql://localhost:5432/db_gpstracker","MYUSER","MYPWD");</div>
  <div><span style="white-space:pre"> </span>}
catch (Exception e) {</div>
  <div><span style="white-space:pre"> </span>System.out.println(e.getMessage());</div>
  <div><span style="white-space:pre"> </span>}</div>
  <div><span style="white-space:pre"> </span>return
connection;</div>
  <div><span style="white-space:pre"> </span>}</div>
  <div>}</div>
  <div><br>
  </div>
  </div>
  <div>I call the method getConnection each time i want to connect to
the database, execute the statements and then i close the connection
(repeat each time i receive some data from the GPS device)</div>
  <div><br>
  </div>
  <div>Best regards</div>
  <div><br>
  </div>
  <div>Fernando<br>
  <br>
  </div>
</blockquote>
<br>
</div></div>

<br></div></div><div class="im">_______________________________________________<br>
postgis-users mailing list<br>
<a href="mailto:postgis-users@postgis.refractions.net" target="_blank">postgis-users@postgis.refractions.net</a><br>
<a href="http://postgis.refractions.net/mailman/listinfo/postgis-users" target="_blank">http://postgis.refractions.net/mailman/listinfo/postgis-users</a><br>
<br></div></blockquote></div><br></div>
</blockquote></div><br></div>