| 123456789101112131415161718 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
- <hibernate-mapping package="id.co.hanoman.service.config">
- <class name="Log" table="log" lazy="false" >
-
- <id name="id" column="id" type="string" length="256" />
-
- <property name="driver" column="driver" type="string" length="256" not-null="true"/>
- <property name="url" column="url" type="string" length="256" not-null="true"/>
- <property name="username" column="username" type="string" length="64" not-null="true"/>
- <property name="password" column="password" type="string" length="256" not-null="true"/>
- <property name="schema" column="schema" type="string" length="32" not-null="false"/>
-
- </class>
-
- </hibernate-mapping>
|