01 package wodbupdate;
02
03 import java.sql.*;
04
05
06 public class Update2 extends Update {
07 // this is an example
08 protected void executeUpdate() throws SQLException {
09 executeSQL("UPDATE PERSON SET NAME = 'foo' where NAME = 'bar'");
10 }
11
12 }
|