Skip to content

Limitations

Eugene Kabanov edited this page Jul 1, 2016 · 3 revisions

There some limitations for version 0.1.0.

  • COPY statement binary format is not supported.

  • Multiple SQL statements is supported only for queries without parameters.

var res = await exec(conn, "SELECT 1; SELECT 2; SELECT 3;") # supported
var res = await exec(conn, "SELECT $1; SELECT $2; SELECT $3;", 1, 2, 3) # not supported
  • Results received only in text format.
Clone this wiki locally