Skip to content

ruslandoga/chdb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ChDB

Elixir bindings for ChDB.

Trying it out

$ docker run --rm -ti hexpm/elixir:1.15.5-erlang-26.0.2-ubuntu-jammy-20230126 bash
$ apt update
$ apt install git curl build-essential
$ iex
iex> Mix.install [{:chdb, github: "ruslandoga/chdb"}]
iex> ChDB.query(["--query", "select 42 format CSV"])
{:ok, "42\n"}