I would like to use the sqlite3_limit function to set the maximum number of attached databases.
sqlite3_limit(db, SQLITE_LIMIT_ATTACHED, 62);
Question 1 - How (if at all) can I perform this operation in Android?
I read here http://sqlite.org/limits.html - paragraph 11.
By default, there is a soft limit of 10 attached databases, however I just connected 11 databases successfully.
Question 2 - What is the default behavior for Max Attached Databases on Android? - Is it set by the hard limit imposed by SQlite3 62? If so, thatβs all I need.
Thanks y'all
source share