public void update (Connection connection, String sql) throws SQLException { Statement stmt = null; try { stmt = connection.createStatement(); stmt.executeUpdate(sql); stmt.close(); } catch (SQLException e) { e.printStackTrace(); throw e; } }
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
public void update (Connection connection, String sql) throws SQLException { Statement stmt = null; try { stmt = connection.createStatement(); stmt.executeUpdate(sql); stmt.close(); } catch (SQLException e) { e.printStackTrace(); throw e; } }
Last edited by copeg; February 2nd, 2011 at 03:13 PM.
a) Please format your code using the highlight or code tags (read the announcements on the top of each forum for instructions - I have edited your post this time). This makes your code readable.
b) "What must be changed" is a question that is complete out of context. What must be changed for what? To compile? To run? Do you get exceptions?
What must be changed in the following code
Change your way of posting question.