kdekooter wrote:
Apparently your datasource is not configured properly. Check the following:
- is it created by your app server
- is the driver available in the class path
- is you datasource reference in hibernate.cfg.xml correct
-) well i created it in the webconsole of the Sun AppServer
-) the drivers of Pointbase (pbclient.jar, pbembedded.jar) are in the classpath-suffix of JVM settings
-) my hibernate.cfg.xml:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.datasource">jdbc/ms-edv</property>
<property name="hibernate.dialect">org.hibernate.dialect.PointbaseDialect</property>
</session-factory>
</hibernate-configuration>
so how can i configure it properly
thanks