public class CustdbScripts {
public static String UploadInsert() {
return("INSERT INTO ULCustomer(cust_id,cust_name) values (?,?)");
}
public String DownloadCursor(java.sql.Timestamp ts,String user ) {
return("SELECT cust_id, cust_name FROM ULCustomer where last_modified >= ' " + ts + " ' ");
}
}