Up

_sqliteSetSizeLimit

Set the maximale size to objects manipulate by SQLite3.

Prototype :

fun [ObjSqlite I I] I

Return : I the new value or nil if error.

See also :

_sqliteGetSizeLimit

Example :

typeof mydb = ObjSqlite;;
...
_fooId _sqliteSetSizeLimit mydb SCOL_SQLITE_SQL_LENGTH_LIMIT 1024;

Note

See : http://www.sqlite.org/c3ref/c_limit_attached.html;
and : http://www.sqlite.org/limits.html.