Hi, I meet a problem, in hibernate.cfg.xml : <property name="connection.driver_class">org.hsqldb.jdbcDriver</property> <property name="connection.url">jdbc:hsqldb:hsql://localhost</property> when I want to connection to oracle, the property value will change, and I not want to know the exact property value, but how to find the information about the property value from official. for example : when connect to oracle the value of property "connection.url" is “oracle.jdbc.driver.OracleDriver”,where I can get the information “oracle.jdbc.driver.OracleDriver“,of course, I can search from google, but I want to know from authority.
Thans very much.
|