Connection.prepareStatement()函数出错,提示:
这是因为引入的包不对头,
import com.mysql.jdbc.PreparedStatement; import com.mysql.jdbc.Statement;
引入正确的包就没有这个错误了。
import java.sql.PreparedStatement; import java.sql.Statement;
时间: 2024-12-14 00:45:14
Connection.prepareStatement()函数出错,提示:
这是因为引入的包不对头,
import com.mysql.jdbc.PreparedStatement; import com.mysql.jdbc.Statement;
引入正确的包就没有这个错误了。
import java.sql.PreparedStatement; import java.sql.Statement;