hi all when i run my program i get the error message below
org.springframework.jdbc.CannotGetJdbcConnectionEx ception: Could not get JDBC Connection; nested exception is SQL Exception: Database 'GIXDS' not found.
SQL Exception: Database 'GIXDS' not found.
this is bean file
<bean id="dbDataSource" class="org.springframework.jdbc.datasource.DriverM anagerDataSource" singleton="true">
<property name="driverClassName" value="${jdbc.driverClassName}"/>
<property name="url" value="${jdbc.url}"/>
<property name="username" value="${jdbc.username}"/>
<property name="password" value="${jdbc.password}"/>
</bean>
i set the properties to another file
jdbc.driverClassName=org.apache.derby.jdbc.Embedde dDriver
jdbc.url=jdbc:derby:GIXDS
jdbc.username=user
jdbc.password=password
i think is the connection problem pls show me
the way how to configure it ...
thank you for reply


Reply With Quote
but have you actually created the GIXDS database?