Originally posted by: SystemAdmin
[aldreas said:]
Respond myself
The "DBUpdate" command is a bit diferent for Oracle and for Access, its well explained in an old version of the documentation:
------------------
For ODBC, the insertion is made by the instruction:
DBupdate(db, "insert into Result (task, startTime, endTime)
values (?, ?, ?)")(resultSet);
For Oracle, the insertion is made by the instruction:
DBupdate(db, "insert into Result (task, startTime, endTime)
values (:1, :2, :3)")(resultSet);
------------------
The sintax has changed but the "?,?" and the ":1,:2" are the same
David
#DecisionOptimization#OPLusingCPOptimizer