Konstantin,

Could this latest problem be related to my Login.hbm.xml file?

<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC 
    "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
    "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd";>

<hibernate-mapping 
    package="com.entercite.finance.model">
    
    <class name="Login" table="login">
        
        <id name="id" column="id" type="int" unsaved-value="null">
            <generator class="native"/>
        </id>

        <property name="username" column="userName" type="string" length="20" />
        <property name="password" column="password" type="string" length="20" />
        <property name="permissionType" column="permission_type" type="int" 
length="5" />
        <property name="insertDate" column="insert_date" type="date" />
        <property name="modifyDate" column="modify_date" type="date" />
    </class>

</hibernate-mapping> 

-- 
___________________________________________________
Play 100s of games for FREE! http://games.mail.com/


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to