Jan 9, 2012

How to doInsert the values to a table ?


A new record is inserted with the name 'My name' in the name field and the value 100 in the value field.
ttsBegin;
 
myTable.name = 'My name';
myTable.value = 100;
 
myTable.doInsert();
 
ttsCommit;

No comments: