Can I query inside a SQLite Transaction?

Posted by CSharperWithJava on Stack Overflow See other posts from Stack Overflow or by CSharperWithJava
Published on 2010-05-15T17:39:12Z Indexed on 2010/05/15 17:44 UTC
Read the original article Hit count: 202

Filed under:
|
|

I'm using the SQLite3 database system in the Android library.

I need to execute a query during a transaction to see if there is a similar entry already there. If there is, I have to perform some other logic and adjustments before I add a new row.

Can I execute a query within a transaction and get the result back immediately?

© Stack Overflow or respective owner

Related posts about sqlite

Related posts about database-queries