This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
hi, this is one of the questions from the mock exams. question: --------- import java.sql.*; Additional code here Connection c; c=DriverManager.getConnection("jdbc:msql://host:12/dta"); String str = "update employee set salary=50000 where lname=\'jones\'"; What code would execute the SQL statement above? options: ------- Choice 1 Statement s = c.createStatement(); ResultSet rs = s.executeUpdate(str); Choice 2 PreparedStatement s = c.prepareStatement(str); ResultSet rs = s.executeUpdate(); Choice 3 c.setSQL(str); ResultSet rs = c.execute(); Choice 4 ResultSet rs = c.executeUpdate(str); Choice 5 CallableStatement s = c.createCall(str); ResultSet rs = s.executeCall(); what would be the appropriate answer?. arun.
Thomas Paul
mister krabs
Ranch Hand
Joined: May 05, 2000
Posts: 13974
posted
0
1 and 2 are wrong because executeUpdate does not return a ResultSet object. 3 is wrong because there is no such method as setSQL() for a Connection object. 4 is wrong because there is no method executeUpdate() for a Connection object. 5 is wrong because there is no such method as createCall in a Connection object and no such method as executeCall() in a CallableStatement object. So the correct answer is none of the above.