Skip to content

Releases: chdb-io/chdb-node

v1.2.1

28 Aug 10:04
9ecdb6d
Compare
Choose a tag to compare

What's Changed

  • Use non sudo update_libchdb.sh by @auxten in #16
  • Use libchdb API v2 to throw exception while SQL error by @auxten in #14
const { query } = require("chdb");
// If an error occurs, it will be thrown
try {
   query("SELECT * FROM non_existent_table;", "CSV");
}
catch (e) {
    console.log("Error:", e.message);
}

Full Changelog: v1.1.4...v1.2.1

v1.2.0

28 Aug 09:16
f75803c
Compare
Choose a tag to compare

What's Changed

  • Use libchdb API v2 to throw exception while SQL error by @auxten in #14
const { query } = require("chdb");
// If an error occurs, it will be thrown
try {
   query("SELECT * FROM non_existent_table;", "CSV");
}
catch (e) {
    console.log("Error:", e.message);
}

Full Changelog: v1.1.4...v1.2.0

v1.1.4

03 Jul 13:58
7cb8ee7
Compare
Choose a tag to compare

What's Changed

  • Bump default chdb latest release version to 2.0.0b0 by @jboga in #12

New Contributors

  • @jboga made their first contribution in #12

Full Changelog: v1.1.3...v1.1.4

v1.1.3

19 Apr 07:12
Compare
Choose a tag to compare

What's Changed

  • Fix libchdb version to 1.1.0 until chdb-node 1.2.0 by @auxten in #10

Full Changelog: v1.1.2...v1.1.3

v1.1.2

03 Jan 10:42
941ef91
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.0...v1.1.2

v1.1.0

30 Dec 04:32
782a8c1
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.0.1...v1.1.0

1.0.1

01 Aug 14:42
d6ece83
Compare
Choose a tag to compare
Update README.md

0.7.0

08 May 13:57
ad10fce
Compare
Choose a tag to compare