我一直在尝试做一个可以接收SQL语句并使用两个类执行'ExecuteUpdate'的方法但是当我声明'ResultSet res = stat.executeUpdate(SQL sentece)时'Netbeans说我这个错误:' Int无法转换为ResultSet',但我不知道为什么。这是两个类:
类conexion
package controller;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.sql.ResultSet;
public class conexion{
Connection con = null;
Statement stat = null;
//Method to star the connection
conexion(){
try{
Class.forName("com.mysql.jdbc.Driver");
con = DriverManager.getConnection("jdbc:mysql://localhost:3306/mydb","root","n0m3l0");
}
catch(ClassNotFoundException | SQLException x){
System.out.println(x);
}
}
//Method to end the Connection
void endConexion(){
if(con == null || stat == null){
try{
stat.close();
con.close();
}
catch(SQLException x){
Logger.getLogger(conexion.class.getName()).log(Level.SEVERE, null, x);
}
}
else {
System.out.println("Connection is already finished");
}
}
//Methods Set and Get for Stat and Con
void setStat(Statement x){
this.stat = x;
}
void setCon(Connection x){
this.con = x;
}
Statement getStat(){
return this.stat;
}
Connection getCon(){
return this.con;
}
}
班级查询
package controller;
import java.sql.ResultSet;
import java.sql.SQLException;
public class Querys {
//Call class conexion
private conexion mycon = new conexion();
//Method to execute onlye inserts querys
void insertQuerys(String sql){
try{
mycon.setStat(mycon.getCon().createStatement());
mycon.getStat().executeUpdate(sql);
}
catch(Exception x){
System.out.println(x);
}
}
//MEthod to execute query that return results
ResultSet queryResponse(String sql) throws SQLException{
mycon.setCon(null);
mycon.setStat(null);
****This is the line where is the error*****
ResultSet res = mycon.getStat().executeUpdate(sql);
while(res.next()){
return res;
}
}
}
答案 0 :(得分:0)
好吧,因为executeUpdate()
会返回更新或删除的实体数量,而且实际上是int
值。
答案 1 :(得分:0)
答案 2 :(得分:0)
它
int rowsUpdated = mycon.getStat().executeUpdate(sql);
您实际上正在执行更新语句,它只会返回不受ResultSet
影响的行数
答案 3 :(得分:0)
如果你不想保留ResultSet,你可以使用
ResultSet rs = mycon.getStat().executeQuery("SELECT a, b FROM TABLE2");
或更改为int
int rowsUpdated = mycon.getStat().executeUpdate(sql);