java.sql.SQLException: Parameter metadata not available for the given sta

问题:Java.sql.SQLException: Parameter metadata not available for the given statement

意思说:对于给定语句的参数元数据不可用(连接数据库时的URL需要加上元数据类型)
generateSimpleParameterMetadata=true (生成简单的参数元数据)

这里写上generateSimpleParameterMetadata=true 就解决了。

private static String url = "jdbc:mysql://localhost:3306/jdbc";
//修改为
private static String url = "jdbc:mysql://localhost:3306/jdbc?generateSimpleParameterMetadata=true";

因为mysql驱动默认generateSimpleParameterMetadata=false只有设置为true metadata类型会将每一个参数反射为Varchar类型

你可能感兴趣的:(MySQL)