Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version:2.4
Mapping documents:
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">
<class name="QuickStart.Programs, QuickStart" table="Programs">
<id name="ProgramId" column="ProgramId" type="int" length="4">
<generator class="assigned" />
</id>
<property name="CreationDate" type="DateTime"/>
<property name="Author" type="Varchar" length="50"/>
</class>
</hibernate-mapping>
Full stack trace of any exception that occurs:
QuickStart.exe!QuickStart.RegMgr.RegMgr() Line 18 C#
QuickStart.exe!QuickStart.Program.Main() Line 18 + 0x13 bytes C#
Name and version of the database you are using:MSSQL
Problems with Session and transaction handling?
Read this:
http://hibernate.org/42.html
Hi,
I am new to hibernate and have been following this tutorial:
http://www.theserverside.net/tt/article ... NHibernate
I get this error:
"Could not compile the mapping document: Programs.hbm.xml when trying to run my program. "
I hope some of you experts can help :)