History log of /netbsd/lib/lua/sqlite/sqlite.c (Results 1 – 10 of 10)
Revision Date Author Comments
# 7225c8e7 16-May-2019 tpaul <tpaul@NetBSD.org>

Prevent Lua from crashing if clear_bindings() is called on a statement
that failed to prepare().

ok mbalmer@


# 331a6882 10-May-2017 mbalmer <mbalmer@NetBSD.org>

Guard against double freeing of objects (explicit by the Lua program, then
later by the garbage collector).
This fixes PR bin/52218.


# 0d97a059 15-Feb-2016 mbalmer <mbalmer@NetBSD.org>

Fix function name, no functional change.
Found by Travis Paul, (see PR/50786), thanks for reporting!


# c4b1eb35 19-Jul-2014 lneto <lneto@NetBSD.org>

lua: updated from 5.1 to 5.3 work3

* lua(1):
- changed lua_Integer to intmax_t
- updated distrib/sets/lists and etc/mtree
- updated bsd.lua.mk
- fixed bozohttpd (lua-bozo.c)
- compatibiliz

lua: updated from 5.1 to 5.3 work3

* lua(1):
- changed lua_Integer to intmax_t
- updated distrib/sets/lists and etc/mtree
- updated bsd.lua.mk
- fixed bozohttpd (lua-bozo.c)
- compatibilized bindings: gpio, sqlite
* lua(4):
- removed floating-point and libc dependencies using '#ifndef _KERNEL'
- fixed division by zero and exponentiation
- libkern: added isalnum(), iscntrl(), isgraph(), isprint() and ispunct()
- acpica: removed isprint() from acnetbsd.h
- libc: moved strcspn.c, strpbrk.c and strspn.c to common
- removed stub headers
- compatibilized bindings: luapmf, luasystm
* reorganized luaconf.h
* updated doc/CHANGES and doc/RESPONSIBLE

show more ...


# 61b79e4c 27-Oct-2013 mbalmer <mbalmer@NetBSD.org>

More user friendly sqlite.open() function.
Add a few more symbols.
Register all function in the sqlite table.


# 007a0006 02-Nov-2012 mbalmer <mbalmer@NetBSD.org>

- Update to the version on github.com.
- Fix stmt_bind(): SQLite makes a copy of the string passed (which can be
garbage collected). Problem found by Kubo Takehiro.


# 85ebf103 15-Mar-2012 joerg <joerg@NetBSD.org>

Add __printflike attribution to use vprintf and friends with an argument
as format string.


# d29be1fa 15-Oct-2011 mbalmer <mbalmer@NetBSD.org>

Add db:changes()


# 2d71a4af 15-Oct-2011 mbalmer <mbalmer@NetBSD.org>

Remove un-needed headers.


# 58c6bbcc 15-Oct-2011 mbalmer <mbalmer@NetBSD.org>

A Lua module to access SQLite databases.