以下是报的错
javax.servlet.ServletException: org.springframework.jdbc.UncategorizedSQLException: SqlMapClient operation; uncategorized SQLException for SQL []; SQL state [HY004]; error code [0];   
--- The error occurred in com/fwcz/model/houseInfo.xml.  
--- The error occurred while applying a parameter map.  
--- Check the editorHouseInfo-InlineParameterMap.  
--- Check the parameter mapping for the 'houseId' property.  
--- Cause: java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]The specified SQL type is not supported by this driver.; nested exception is com.ibatis.common.jdbc.exception.NestedSQLException:   
--- The error occurred in com/fwcz/model/houseInfo.xml.  
--- The error occurred while applying a parameter map.  
--- Check the editorHouseInfo-InlineParameterMap.  
--- Check the parameter mapping for the 'houseId' property.  
--- Cause: java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]The specified SQL type is not supported by this driver.
org.apache.struts.action.RequestProcessor.processException(RequestProcessor.java:535)
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:433)
root cause org.springframework.jdbc.UncategorizedSQLException: SqlMapClient operation; uncategorized SQLException for SQL []; SQL state [HY004]; error code [0];   
--- The error occurred in com/fwcz/model/houseInfo.xml.  
--- The error occurred while applying a parameter map.  
--- Check the editorHouseInfo-InlineParameterMap.  
--- Check the parameter mapping for the 'houseId' property.  
--- Cause: java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]The specified SQL type is not supported by this driver.; nested exception is com.ibatis.common.jdbc.exception.NestedSQLException:   
--- The error occurred in com/fwcz/model/houseInfo.xml.  
--- The error occurred while applying a parameter map.  
--- Check the editorHouseInfo-InlineParameterMap.  
--- Check the parameter mapping for the 'houseId' property.  
--- Cause: java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]The specified SQL type is not supported by this driver.
org.springframework.jdbc.support.SQLStateSQLExceptionTranslator.translate(SQLStateSQLExceptionTranslator.java:120)
org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.translate(SQLErrorCodeSQLExceptionTranslator.java:276)
org.springframework.orm.ibatis.SqlMapClientTemplate.execute(SqlMapClientTemplate.java:197)
org.springframework.orm.ibatis.SqlMapClientTemplate.update(SqlMapClientTemplate.java:382)
com.fwcz.service.HouseInfoDaoImpl.update(HouseInfoDaoImpl.java:248)
com.fwcz.action.HouseInfoAction.update(HouseInfoAction.java:67)
以下是我的配置文件
    <update id="editorHouseInfo" parameterClass="HouseInfo">          UPDATE House_Info SET  
             House_Address=#houseAddress#,House_Room=#houseRoom#,House_Hall=#houseHall#,Lavatory=#lavatory#,Current_Floor=#currentFloor#,Total_Floor=#totalFloor#,
             
             Register_Category_Id=#registerCategoryId#,Price=#price#,House_introduce=#houseIntroduce#,Tel=#tel#,Qq=#qq#,Email=#email# WHERE house_Id=#houseId#    </update>
提示是houseId这字段有问题,我HouseInfo类的确有这个字段;如果我把#houseId#换成旨定的值 如:150 哪就变成 WHERE house_Id=150 哪更新就没问题,但我传入一个类,取houseId的值作为参数时就出问题,请问这是什么原因?