Tarun <er.tarun.9...@gmail.com> wrote:
> Is there any configurable parameter which allows us to set maximum
> number of records that is allowed to be inserted. Once this limit is
> reached, insert SQL query should fail inserting records telling max
> records have been inserted in DB table.

No such parameter that I know of. PRAGMA max_page_count comes close, but it 
works in terms of bytes, not records. If you really want to limit the number of 
records, you should be able to achieve this with triggers.
-- 
Igor Tandetnik

_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to