I have read their limits FAQ, they talk about many limits except limit of the whole database.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is fairly easy to deduce from the implementation limits page:
So we have 32768 * 1073741823, which is 35,184,372,056,064 (35 trillion bytes)!
You can modify
SQLITE_MAX_PAGE_COUNTorSQLITE_MAX_PAGE_SIZEin the source, but this of course will require a custom build of SQLite for your application. As far as I’m aware, there’s no way to set a limit programmatically other than at compile time (but I’d be happy to be proven wrong).