Skip to content

Releases: arcapos/luapgsql

pgsql-1.6.7

09 Jan 07:41
Compare
Choose a tag to compare

Minor bugfix release. res:copy(true) would not correctly convert boolean values.

pgsql-1.6.1

28 Aug 11:43
Compare
Choose a tag to compare

Return nil when a command execution function returns NULL.

pgsql-1.6.0

21 Aug 08:30
Compare
Choose a tag to compare

Changes

  • Improvements regarding Lua stack use.
  • Nicer API, e.g. returning true/false instead of the integer value the underlying libpq functions return.
  • Simplifications.

API Changes

  • Functions like execParams() no longer can be passed tables directly. If you have created e.g. a table containing the parameters for a parametrized query, use table.unpack() to pass the table as discrete values.

pgsql-1.4.10

14 Feb 15:14
Compare
Choose a tag to compare

Support for PostgreSQL 9.5, better support for Lua 5.3

1.4.2

21 Feb 07:35
Compare
Choose a tag to compare
  • Updated rockspec.
  • Numbers and boolean values are sent in the binary format, +/- Infinity and NaN are now correctly handled.

1.4.1

21 Feb 07:34
Compare
Choose a tag to compare
  • OIDs used by the interface are hardcoded in luapgsql.h, it is no longer necessary to have the PostgreSQL server development headers installed.

1.4.0

21 Feb 06:57
Compare
Choose a tag to compare
  • The conn:escape() function has been replaced by conn:escapeString().
  • The conn:unescapeBytea() function has been added.