|
From: Rajeev K. <Ra...@cu...> - 2003-07-26 00:46:23
|
I am having trouble running the petclinic app with hsqldb & jboss 3.0.7. =
On stepping through the code, I found that after getting the connection =
in the DriverManagerDatasource class, it hangs on the following =
statement:
con.setAutoCommit(true);
public Connection getConnection(String username, String password) throws =
SQLException {
logger.info("Creating new JDBC connection: " + this.url);
Connection con =3D getConnectionFromDriverManager(this.url, username, =
password);
con.setAutoCommit(true);
return con;
}
I did start hsqldb before I started jboss using server.bat. I also =
checked with manager.bat to see if the data is loaded.
Any ideas???
Rajeev
|