DynamicSQL.executeUpdate(sentence,implname,inParameters,user,password)

Runs an sql query. The "executeQuery" is used to perform update sentences against databases using the specific database's native SQL. This is only used to execute SQL sentences like: UPDATE , INSERT and DELETE .

Arguments:

Name Type Description Mode
sentence String Sql sentence to execute. in
implname String Configuration name of the sql connector. in
inParameters Any[] A mapping of parameter index and objects to bound (default: an empty map). in
user String user id to use to connect. in
password String the password for the user. in