mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 02:12:21 +00:00
913 B
913 B
title | sidebar_label | slug | description | keywords | ||||
---|---|---|---|---|---|---|---|---|
CとC++向けのchDBのインストール | CとC++ | /ja/chdb/install/c | CとC++向けのchDBをインストールする方法 |
|
CとC++向けのchDBのインストール
要件
libchdbをインストールします:
curl -sL https://lib.chdb.io | bash
使用方法
libchdbの手順に従って開始してください。
chdb.h
#pragma once
#include <cstdint>
#include <stddef.h>
extern "C" {
struct local_result
{
char * buf;
size_t len;
void * _vec; // std::vector<char> *の解放用
double elapsed;
uint64_t rows_read;
uint64_t bytes_read;
};
local_result * query_stable(int argc, char ** argv);
void free_result(local_result * result);
}