$jdbcPreparedStatement.execute

Execute a previously created prepared statement.
Syntax
    $jdbcPreparedStatement.execute{statement_name}
Documentation$jdbcPreparedStatement.execute:
Deprecated. Use $sql.preparedStatement.execute instead. Execute a previously created prepared statement as an update. For queries please have a look at $jdbcPreparedStatement.executeQuery. If available, the parameters of the statement must have been set using the $jdbcPreparedStatement.set* methods to the desired values before calling this function. After setting large amount of data like e.g. BLOBs its generally a good idea to use $jdbcPreparedStatement.clearParameters afterwards.
    Paramter:
      1 - name of statement to execute
    Returns:
      Void.
    Throws:
      SQLException
Examples
(No example available.)
GroupSQL
Minimum required transaction-mode:UPDATE=SQL
Required scripting permission of the developerPERMISSION_FL_EXPERT
Minimum parameters1
Maximum parameters 1