Tuesday, January 31, 2012

Execute DML Statements in cordys

String querytxt="---DELETE or Update query-- ";
DMLStatement dml = new DMLStatement(querytxt);
dml.execute();

1 comment:

Hariprasad said...

Remember to import the following in your java code

import com.cordys.cpc.bsf.busobject.DMLStatement;

Also add wsappserver.jar into your project class
path

Post a Comment