lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Tue, Mar 28, 2017 at 4:21 PM, John Logsdon
<j.logsdon@quantex-research.com> wrote:
> Yes, they are local to the function.  cdata is a good idea although I am
> not sure how that would fit with sqlite which may not be able to store
> binary data.

SQLite can store binary data.  See: http://sqlite.org/limits.html

The default maximum blob size is 10^9 (or one billion bytes).  If you
recompile SQLite, this can be increased up to 2^31 minus 1 (or 2GB
minus one).

-Parke