+These constants define various performance limits
+that can be lowered at run-time using sqlite3_limit().
+The synopsis of the meanings of the various limits is shown below.
+Additional information is available at Limits in SQLite.
+
+
+
+
SQLITE_LIMIT_LENGTH
+
The maximum size of any string or BLOB or table row, in bytes.
+
+
+
SQLITE_LIMIT_SQL_LENGTH
+
The maximum length of an SQL statement, in bytes.
+
+
+
SQLITE_LIMIT_COLUMN
+
The maximum number of columns in a table definition or in the
+result set of a SELECT or the maximum number of columns in an index
+or in an ORDER BY or GROUP BY clause.
+
+
+
SQLITE_LIMIT_EXPR_DEPTH
+
The maximum depth of the parse tree on any expression.
+
+
+
SQLITE_LIMIT_COMPOUND_SELECT
+
The maximum number of terms in a compound SELECT statement.
+
+
+
SQLITE_LIMIT_VDBE_OP
+
The maximum number of instructions in a virtual machine program
+used to implement an SQL statement. If sqlite3_prepare_v2() or
+the equivalent tries to allocate space for more than this many opcodes
+in a single prepared statement, an SQLITE_NOMEM error is returned.