hibernate.dialect net.sf.hibernate.dialect.SAPDBDialect
hibernate.connection.driver_class com.sap.dbtech.jdbc.DriverSapDB
hibernate.connection.url jdbc:sapdb://20.10.5.10/test
hibernate.connection.username dba
hibernate.connection.password dba
hibernate.query.substitutions yes 'Y', no 'N'
hibernate.connection.pool_size 1
hibernate.proxool.pool_alias pool1
hibernate.jdbc.batch_size 0
hibernate.jdbc.use_streams_for_binary true
hibernate.max_fetch_depth 1
hibernate.cache.provider_class net.sf.hibernate.cache.HashtableCacheProvider
hibernate.query.substitutions true 1, false 0, yes 'Y', no 'N'
hibernate.use_outer_join true
hibernate.show_sql true
hibernate.hbm2ddl.auto update
my app connect to MaxDB and create tables and insert values to tables correctly. but i can not read values for example
List mylist = hibernatesession.find("from x_table");
hibernate say "cannot Execute Query"
how to solve this problem.
now thanks
|