## HypersonicSQL hibernate.dialect net.sf.hibernate.dialect.HSQLDialect hibernate.connection.driver_class org.hsqldb.jdbcDriver hibernate.connection.username sa hibernate.connection.password hibernate.connection.url jdbc:hsqldb:hsql://localhost hibernate.connection.url jdbc:hsqldb:test hibernate.connection.url jdbc:hsqldb:. |
## HypersonicSQL #hibernate.dialect net.sf.hibernate.dialect.HSQLDialect #hibernate.connection.driver_class org.hsqldb.jdbcDriver #hibernate.connection.username sa #hibernate.connection.password #hibernate.connection.url jdbc:hsqldb:hsql://localhost #hibernate.connection.url jdbc:hsqldb:test #hibernate.connection.url jdbc:hsqldb:. |
## MS SQL Server #hibernate.dialect net.sf.hibernate.dialect.SQLServerDialect #hibernate.connection.username sa #hibernate.connection.password sa ## JSQL Driver #hibernate.connection.driver_class com.jnetdirect.jsql.JSQLDriver #hibernate.connection.url jdbc:JSQLConnect://1E1/test |
## MS SQL Server hibernate.dialect net.sf.hibernate.dialect.SQLServerDialect hibernate.connection.username sa hibernate.connection.password sa ## JSQL Driver hibernate.connection.driver_class com.jnetdirect.jsql.JSQLDriver hibernate.connection.url jdbc:JSQLConnect://yuj/testhi |
package testhibernate; public class Person { private String id; private String name; private String address; public void setId(String value) { this.id = value; } public String getId() { return id; } public void setName(String value) { this.name = value; } public String getName() { return name; } public void setAddress(String value) { this.address = value; } public String getAddress() { return address; } } |