Skip to content

v1.3.0

Latest
Compare
Choose a tag to compare
@auxten auxten released this 03 Jun 02:50
5eb8870

What's Changed

  • Extending cpp bindings to support Clickhouse params thereby enabling … by @rajdude0 in #24
const { queryBind } = require("chdb");

// Bind parameters in query
const result = queryBind(
  'SELECT {id:UInt32}, {name:String}', 
  { id: 42, name: 'Alice' }, 
  'CSV'
);
console.log(result); // "42","Alice"

New Contributors

Full Changelog: v1.2.1...v1.3.0