Adrien A.
Adrien A.

Reputation: 441

use play framework 2.0 with oracle 10g

I try to connect a play framework sample to an oracle 10g db so I use these string connexion :

jpa.dialect=org.hibernate.dialect.Oracle10gDialect
db.url=jdbc:oracle:thin:@10.0.2.1521:1521:play
db.driver=oracle.jdbc.driver.OracleDriver
db.user=sysdba
db.pass=tongji

and put the ojdbc14.jar to the /lib directory. But I get this error : enter image description here

I try different things (put "" at each line, try localhost instead of the ip address of my listener, ...) but nothing works.

Upvotes: 3

Views: 2758

Answers (1)

biesior
biesior

Reputation: 55798

For deafult DB keys are formated with setting's name: db.default.key-name.

Try this:

db.default.url="jdbc:oracle:thin:@10.0.2.1521:1521:play"
db.default.driver=oracle.jdbc.driver.OracleDriver
db.default.user=sysdba
db.default.pass=tongji

(of course insert correct URL and credentials, etc, I don't know format of Oracle's connection URL)

Upvotes: 5

Related Questions