Tagged Questions
0
votes
1answer
339 views
I can't get any data from my database using NHibernate sessionfactory object in ASP.Net 3.5
I have checked that I can connect and get data from the DB using regular C#, which I can. However, when I try to extract data from my DB via session/ sessionfactory, I get nothing. I am a newbie and ...
0
votes
1answer
1k views
Spring 3.1 + hibernate 4: Can't get it to run
I tried different configurations but to no effect. The error remained the same. Here the desired config taken from BoneCPs web site:
<?xml version="1.0" encoding="UTF-8"?>
<beans ...
0
votes
1answer
754 views
How to configure this code as spring Bean?
I have this code:
SessionFactory sessionFactory = new Configuration().configure("hibernate.cfg.xml");
How i may to configure this as bean?
hibernate.cfg.xml contain this:
<?xml version="1.0" ...
0
votes
1answer
636 views
Spring Config for Hibernate Session
Hi
I'm trying to obtain hibernate's Session through Spring's injection.
Here's my spring context xml:
<!-- hibernate's session factory -->
<bean id="sessionFactory"
...