Question: Find the error in the following Java code. Assume that conn references a valid Connection object. // This code has an error!!! String sql =
Find the error in the following Java code. Assume that conn references a valid Connection object.
// This code has an error!!!
String sql = "SELECT * FROM Coffee";
Statement stmt = conn.createStatement();
ResultSet result = stmt.execute(sql);
Step by Step Solution
3.48 Rating (164 Votes )
There are 3 Steps involved in it
The error is in the line where it says Statement stmt conncreateStatement This should ... View full answer
Get step-by-step solutions from verified subject matter experts
