This project is not maintained, please use npgsql-cratedb instead.
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);
}
}
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