difference between rawquery and execSQL in android sqlite database

From API documentation:


void execSQL (String sql)

Execute a single SQL statement that is NOT a SELECT or any other SQL statement that returns data.

void execSQL (String sql, Object[] bindArgs)

Execute a single SQL statement that is NOT a SELECT/INSERT/UPDATE/DELETE.

The documentation is inconsistent but they behave both the same. Documentation of the latter is more in depth.


Cursor rawQuery (String sql, String[] selectionArgs)

Runs the provided SQL and returns a Cursor over the result set.


Uses for rawQuery are:

Uses for execSQL are:

  • You have “instructions” for the database. Like CREATE TABLE (or any other CREATE statement, e.g. CREATE INDEX), DROP, PRAGMAs that set properties rather than returning them, …
  • INSERT, UPDATE or DELETE when you’re not interested in the amount of rows modified or the row id of the last insert.
  • Anything else that relies on executing a statement.

Leave a Comment