Skip to content

mikethebeer/crate-mono

 
 

Repository files navigation

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

Mono/.NET client driver for crate

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 78.9%
  • F# 18.4%
  • Shell 1.9%
  • Batchfile 0.8%