Skip to content Skip to sidebar Skip to footer

How To Enable Sqlite_enable_update_delete_limit In Android?

'SQLITE_ENABLE_UPDATE_DELETE_LIMIT' is a option of SQLite. People will compile their own SQLite and add this parameter to make the SQLite database support SQL Command 'Limit' funct

Solution 1:

how can I enable this option in the Android?

You compile your own SQLite using the NDK and add this parameter to make the SQLite database support LIMIT on UPDATE and DELETE statements. Then, you write your own set of wrapper classes to access your custom SQLite library.

This will be very complex; it will be far simpler for you to find some other solution to whatever problem you are trying to solve by using LIMIT in this fashion.

Post a Comment for "How To Enable Sqlite_enable_update_delete_limit In Android?"