Com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorEx

Source: Internet
Author: User

has been using Oracle, long time no use of MySQL, today built a MySQL web development environment. Unexpectedly throws this exception:

 

Remember that when you create the data, the character set is Utf-8:

CREATE DATABASE service DEFAULT CHARACTER SET UTF8;

Online Search for various solutions:

The end result is due to the MySQL driver version:

<dependency>

<groupId>mysql</groupId>

<artifactId>mysql-connector-java</artifactId>

<version>5.1.35</version>

</dependency>

Into

<dependency>

<groupId>mysql</groupId>

<artifactId>mysql-connector-java</artifactId>

<version>5.1.18</version>

</dependency>

The result is no,

Replace the following Maven dependency problem resolution,

<dependency>

<groupId>mysql</groupId>

<artifactId>mysql-connector-java</artifactId>

<version>5.1.6</version>

</dependency>

A dead man.

Com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorEx

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.