chdb-linux-x64 0.0.1-alpha

This is a prerelease version of chdb-linux-x64.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package chdb-linux-x64 --version 0.0.1-alpha
NuGet\Install-Package chdb-linux-x64 -Version 0.0.1-alpha
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="chdb-linux-x64" Version="0.0.1-alpha" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add chdb-linux-x64 --version 0.0.1-alpha
#r "nuget: chdb-linux-x64, 0.0.1-alpha"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install chdb-linux-x64 as a Cake Addin
#addin nuget:?package=chdb-linux-x64&version=0.0.1-alpha&prerelease

// Install chdb-linux-x64 as a Cake Tool
#tool nuget:?package=chdb-linux-x64&version=0.0.1-alpha&prerelease

chdb

GitHub License example workflow

<table> <thead> <tr> <th>OS</th> <th>Arch</th> <th>chdb</th> <th>downloads</th> </tr> </thead> <tbody> <tr> <td rowspan="2">OSX</td> <td>arm64</td> <td><img src="https://img.shields.io/nuget/vpre/chdb-osx-arm64"></td> <td><img src="https://img.shields.io/nuget/dt/chdb-osx-arm64"></td> </tr> <tr> <td>x64</td> <td><img src="https://img.shields.io/nuget/vpre/chdb-osx-x64"></td> <td><img src="https://img.shields.io/nuget/dt/chdb-osx-x64"></td> </tr> <tr> <td rowspan="2">Linux</td> <td>arm64</td> <td><img src="https://img.shields.io/nuget/vpre/chdb-linux-arm64"></td> <td><img src="https://img.shields.io/nuget/dt/chdb-linux-arm64"></td> </tr> <tr> <td>x64</td> <td><img src="https://img.shields.io/nuget/vpre/chdb-linux-x64"></td> <td><img src="https://img.shields.io/nuget/dt/chdb-linux-x64"></td> </tr> </tbody> </table>

chdb NuGet package

A .NET Core binding for chdb library.

dotnet add package chdb

Usage

using ChDb;

var result = ChDb.Query("select version()");
Console.WriteLine(result.Text);
// 23.10.1.1
var s = new Session();
var result = s.Query("select * from system.formats where is_output = 1", "PrettyCompact");
// ┌─name───────────────────────────────────────┬─is_input─┬─is_output─┬─supports_parallel_parsing─┬─supports_parallel_formatting─┐
// │ Prometheus                                 │        0 │         1 │                         0 │                            0 │
// │ PostgreSQLWire                             │        0 │         1 │                         0 │                            0 │
// │ MySQLWire                                  │        0 │         1 │                         0 │                            0 │
// │ JSONEachRowWithProgress                    │        0 │         1 │                         0 │                            0 │
// │ ODBCDriver2                                │        0 │         1 │                         0 │                            0 │
// ...
var result = s.Query("DESCRIBE s3('https://datasets-documentation.s3.eu-west-3.amazonaws.com/house_parquet/house_0.parquet')");
Console.WriteLine(result.Text);

chdb-tool

NuGet Version NuGet Downloads

This is a dotnet tool, running chdb library. Actually you better install the clickhouse client and run clickhouse local, but maybe it is more useful for some cases.

Note for windows users - there is no windows bild in sight, but you can use it in WSL.

Installation

Requires .NET SDK 6.0 or later.

#dotnet tool install --global chdb-tool-<OS>-<ARCH>
dotnet tool install --global chdb-tool-linux-x64

OS supported: linux, osx ARCH supported: x64, arm64

Usage

Try any of this commands lines to see which output you get.

chdb
chdb --version
chdb --help
chdb "select version()"
chdb "select * from system.formats where is_output = 1" PrettyCompact

Build

# update latest chdb version
./update_libchdb.sh [v1.2.1]
# install versionbump tool
dotnet tool install -g BumpVersion
# bump version
bumpversion patch
git push --foloow-tags

Authors

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.
  • net8.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated