Using mySql via proxy throws Caused by: java.sql.SQLException: Callable statements not supported. after reconnect

前端 未结 1 459
甜味超标
甜味超标 2021-01-28 22:04

Hi guys i have this problem .I start my App then when its running I shut down mysql service and of course I starting to get java.sql.SQLException: Callable statements not

1条回答
  •  一个人的身影
    2021-01-28 22:38

    As stated on JavaGalaxy:

    MySQL has no support for Stored Procedures below MySQL version 5. So if you are using MySQL Server below 5 try and upgrade to MySQL Server version 5 or above.

    If you are receiving this error even when using MySQL 5 or above then there is a possibility that the JDBC driver you are using is not suitable for MySQL server version you are using. Try downloading MySQL Connector/J Driver e.g. (mysql-connector-java-5.1.6-bin.jar or above)

    click here to download MySQL.

    0 讨论(0)
提交回复
热议问题