run

abstract fun run(vararg args: Any?)

Run Statement

Execute the underlying statement against the owning SQLiteDatabase; this method is optimized for one-shot execution, or execution of queries without results (such as inserts, updates, deletes, and schema changes).

If the underlying database has closed, an error is thrown.

Repeated calls to this method with unchanging args will cache the underlying rendered query, but will not cache execution of the query (in other words, the query is executed each time run is called).