Releases: chdb-io/chdb-node
Releases · chdb-io/chdb-node
v1.2.1
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
What's Changed
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
v1.1.3
v1.1.2
v1.1.0
What's Changed
- fix: use array function by @shengxinjing in #2
- add darwin-arm64 prebuild & typescript definitions by @farmer00317558 in #3
- Keepup libchdb.so/chdb.h with main repo by @xq262144 in #4
- Fix session by @auxten in #5
New Contributors
- @shengxinjing made their first contribution in #2
- @farmer00317558 made their first contribution in #3
- @xq262144 made their first contribution in #4
- @auxten made their first contribution in #5
Full Changelog: 1.0.1...v1.1.0
1.0.1
0.7.0
- NodeJS experimental binding for libchdb 0.7.0