java.sql.SQLException: Invalid value for getInt() - ‘id‘ Query: select ‘id‘, ‘username‘
Posted The Gao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java.sql.SQLException: Invalid value for getInt() - ‘id‘ Query: select ‘id‘, ‘username‘相关的知识,希望对你有一定的参考价值。
java.sql.SQLException: Invalid value for getInt() - ‘id’ Query: select ‘id’, ‘username’, ‘password’, ‘email’ from t_user where username =?
原SQL语句
String sql =“insert into t_user(‘username’, ‘password’, ‘email’) values(?,?,?)”;
改为
String sql = “insert into t_user(username,password,email) values(?,?,?)”;
单引号的原因。
以上是关于java.sql.SQLException: Invalid value for getInt() - ‘id‘ Query: select ‘id‘, ‘username‘的主要内容,如果未能解决你的问题,请参考以下文章
线程“主”java.sql.SQLException 中的异常:索引处缺少 IN 或 OUT 参数:: 25 这个错误是啥意思
java.sql.SQLException: 索引中丢失 IN或OUT 参数::x
java.sql.SQLException: 索引中丢失 IN 或 OUT 参数:: x
Exception in thread “main” java.sql.SQLException: The server time zone value ‘?й???????’ is unrecogn
Exception in thread “main“ java.sql.SQLException: The server time zone value ‘�й���ʱ��‘ is unrecogn
java.sql.SQLException: Unknown column 'user0_.user_name' in 'field list' 报错问题