On Sat, 18 Apr 2009 21:41:59 -0700, Randomcoder
<randomcod...@gmail.com> wrote:

>Is there a maximum rows limit imposed on tables in sqlite ?
>I could not find this information anywhere on www.sqlite.org so that's 
>why I'm asking here.
>Thank you

The maximum number of rows is 9223372036854775807.
It is limited by the maximum value of ROWID, which is an
signed 64-bit integer.
You will not manage to reach that maximum, ever.

Other limits:
http://www.sqlite.org/limits.html
-- 
  (  Kees Nuyt
  )
c[_]
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to