How can i do Hibernate mapping in hibernate mapping file (*.hbm.xml) for Bean class & MySQL DB View ?
nirumagics
Greenhorn
Joined: Jul 21, 2006
Posts: 15
posted
0
How can i do Hibernate mapping in hibernate mapping file (*.hbm.xml) for Bean class & MySQL DB View ? ------------------------------
Dear shan,
For any Database u have to write one config file(like hibernate.cfg.xml) in that config file u have to write all database properties (that u want to use) and finally u have to map that hibernate mapping file.
In that mapping file u have to map each property of DTO Class with an primary key.
nirumagics
Greenhorn
Joined: Jul 21, 2006
Posts: 15
posted
0
How can i do Hibernate mapping in hibernate mapping file (*.hbm.xml) for Bean class & MySQL DB View ? ------------------------------
Dear shan,
For any Database u have to write one config file(like hibernate.cfg.xml) in that config file u have to write all database properties (that u want to use) and finally u have to map that hibernate mapping file.
In that mapping file u have to map each property of DTO Class with an primary key.
kri shan
Ranch Hand
Joined: Apr 08, 2004
Posts: 1247
posted
0
Here it's not a table. It's a view(virtual table).
kri shan
Ranch Hand
Joined: Apr 08, 2004
Posts: 1247
posted
0
Basically View is not a base table. How can i map(in the hibernate mapping file *.hbm.xml) view with the Bean ? <Class name='' table=''> Can i mention view name as table name here ?
Joy Mookerji
Ranch Hand
Joined: Jul 26, 2006
Posts: 49
posted
0
Guys, I have struggled a lot for a whole day as able to configure hibernate to read from Oracle. See my code samples on my topic Hibernate Configuration
SCJP 5<br />Brainbench Certified in C++<br />PMP<br />Dallas,TX
subject: Hibernate mapping:Bean class & MySQL DB View