What is the exact difference between using rawquery and execSQL ?? While writing a query in android activity, when to use rawquery and when to use execSQL ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
From API Doc:
Execute a single SQL statement that is NOT a SELECT or any other SQL statement that returns data.
Runs the provided SQL and returns a Cursor over the result set. If you want to e.g. |
|||
|
|
if you want to execute something in database without concerning its output (e.g create/alter tables), then use execSQL, but if you are expecting some results in return against your query (e.g. select records) then use rawQuery |
|||
|
|