-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 
Author Message
 Post subject: could not execute Query
PostPosted: Mon May 28, 2007 10:50 am 
Newbie

Joined: Tue May 08, 2007 5:32 pm
Posts: 7
Hi *,

Hibernate version: 3.2.4

Ich habe folgendes Problem.
habe innerhalb einer Client/Serversoftware eine Anbindung an eine MySQL Datenbank. Kommen über einen bestimmten Zeitraum keine DB-Anfragen, dann bekomme ich folgende Fehlermeldung:

[Sat May 26 14:35:23 CEST 2007] [LobbyThread] Connection closed by foreign Host
[Sat May 26 14:35:23 CEST 2007] [LobbyThread]
network.BasicConnection.readPacket(BasicConnection.java:51)
[Sat May 26 14:35:23 CEST 2007] [LobbyThread]
network.BasicConnection.read(BasicConnection.java:125)
[Sat May 26 14:35:23 CEST 2007] [LobbyThread]
network.ConnectionThread.run(ConnectionThread.java:36)
[Sat May 26 15:48:29 CEST 2007] [LobbyThread] INFO Incoming Connection: Local
Endpoint: /...:2222, Remote Endpoint: /...:1102
[Sat May 26 15:48:29 CEST 2007] [LobbyThread] could not execute query

meine Konfiguration:

<hibernate-configuration>
<session-factory>
<property name="hibernate.bytecode.use_reflection_optimizer">false</property>
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.password">......</property>
<property name="hibernate.connection.url">jdbc:mysql://servername/</property>
<property name="hibernate.connection.username">.....</property>
<property name="hibernate.default_catalog">gameDB2</property>
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<mapping resource="dbClasses/Game.hbm.xml" />
...........
</session-factory>
</hibernate-configuration>

meine SessionFactory:
.....

public class MySessionFactory {

private static SessionFactory instance = null;

private MySessionFactory() {
}

public synchronized static SessionFactory getInstance() {

if (instance == null) {

instance = new Configuration().configure().buildSessionFactory();

}
return instance;

}

}

hat jemand eine Idee?

Ich habe jetzt vorübergehend eine Funktion eingebaut die einfach ab und an einen DB-Abfrage macht und das Problem zu umgehen. Hätte aber gerne eine andere Lösung!

Danke
Chris


Top
 Profile  
 
 Post subject:
PostPosted: Tue May 29, 2007 2:27 am 
Regular
Regular

Joined: Thu Jan 27, 2005 8:58 am
Posts: 80
Genau das Problem hatte ich auch. MySQL schliesst nach 8h Inaktivität Deine DB-Connection und Hibernate bekommt das natürlich erst dann mit, wenn versucht wird ein Statement abzuschicken. Eine saubere Lösung habe ich dafür auch nciht gefunden, mein Workaround war eine Connection mit den Daten des cfg.xml zu öffnen und der Session zu übergeben. Habe auch lange nach einer besseren Lösung gesucht und musste dann aus Mangel an diesen auf MS-SQL umgesteigen.

_________________
Weise ist nicht, wer viele Erfahrungen macht, sondern wer aus wenigen lernt, viele nicht machen zu müssen. (Karlheinz Deschner)


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.