Skip to content
This repository has been archived by the owner on May 23, 2018. It is now read-only.
/ crate-mono Public archive

Unmaintained Mono/.NET client driver for crate. Use npgsql-cratedb instead.

Notifications You must be signed in to change notification settings

mfussenegger/crate-mono

Repository files navigation

Unmaintained

This project is not maintained, please use npgsql-cratedb instead.

Crate.Client

travis-ci appveyor

Crate.Client is a Mono/.NET client driver implementing the ADO.NET interface for Crate

using Crate.Client;

using (var conn = new CrateConnection()) {
    conn.Open();
    using (var cmd = new CrateCommand("select name from sys.cluster", conn)) {
        var reader = cmd.ExecuteReader();
        reader.Read();
        string clusterName = reader.GetString(0);
    }
}

Things missing

Currently this is just a prototype. Things that are missing are:

  • type infos in the Data Reader
  • DataAdapter class
  • a release and nuget package
  • an EntityFramework Provider

About

Unmaintained Mono/.NET client driver for crate. Use npgsql-cratedb instead.

Resources

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published