Executes an SQL statement with the specified parameters. This method is used for both read and write SQL statements.
Name | Description | Type |
---|---|---|
sqlStatement | The SQL statement to execute. The SQL specific to SQLite must be used. | String |
arguments | An optional parameter containing SQL arguments represented by question mark ("?") signs. | ObjectArray |
callback | An optional callback object containing a method to process the results of queries. The
callback receives the transaction object and the resultSet
object. |
SQLStatementCallback |
errorCallback | An optional callback object containing a method to be invoked when the
executeSql() method fails. |
SQLStatementErrorCallback |
Due to platform limitations, the arguments
parameter does not
support infinity values.