Skip to content

Instantly share code, notes, and snippets.

@Eragoo
Created November 10, 2019 16:44
Show Gist options
  • Save Eragoo/273728e016c2703c8df7ec703cc88861 to your computer and use it in GitHub Desktop.
Save Eragoo/273728e016c2703c8df7ec703cc88861 to your computer and use it in GitHub Desktop.
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
<class name="Entity.StudentsEntity" table="students" schema="main">
<id name="id">
<column name="id" sql-type="integer"/>
</id>
<property name="name">
<column name="name" sql-type="text"/>
</property>
<property name="surname">
<column name="surname" sql-type="text"/>
</property>
</class>
</hibernate-mapping>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment