Showing posts with label dml. Show all posts
Showing posts with label dml. Show all posts

Tuesday, December 17, 2013

Java : DML Statement Usage

DML Statements :

 String query1 = "update EMP_DT  set EMP_NAME='"EMP_NAME"',EMP_DEPT='"EMP_DEPT"' where EMP_ID='"EMP_ID"' ";
                     DMLStatement dml1 = new DMLStatement(query1);
                     dml1.execute(); 

Reference:

https://wiki.cordys.com/display/ucforum/Query+In+Java+Code