[Error Note] MyBatis SQLException: Invalid column type: 1111,

Source: Internet
Author: User

[Error Note] MyBatis SQLException: Invalid column type: 1111,

Problem description:

Org. springframework. jdbc. uncategorizedSQLException: Error setting null for parameter #1 with JdbcType OTHER. try setting a different JdbcType for this parameter or a different jdbcTypeForNull configuration property. cause: java. SQL. SQLException: Invalid column type: 1111

Problem Analysis:

This problem occurs because we did not specify the parameter type when writing SQL in the xml file. When we pass a null value, the program cannot automatically match according to the input parameter type, but can only match to the OTHER. If this parameter is required, it will run incorrectly because of inconsistent types.

Solution:

Add the type, for example, jdbcType = VARCHAR, jdbcType = NUMERIC ......, modify the input parameter code: # {param, jdbcType = specific type}, instead of # {param}

Suggestion:

It is best to display the specified parameter type to develop a good coding habit and avoid unnecessary exceptions.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.