Then it means that you haven't sepcified the correct jdbc type for a column. If you use iBatis, the proper insert statement should look something like:
<insert>
INSERT INTO users (login_name, description)
VALUES (#loginName#, #description:LONGVARCHAR#)
</insert>
0 comments:
Post a Comment