DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
IClient.cs
Go to the documentation of this file.
1 using System;
2 
4 
5 namespace Deveel.Data.Protocol {
6  public interface IClient : IDisposable {
8 
9  //TODO: Provide a method for listing all the database connection properties
10 
11  IDatabaseClient ConnectToDatabase(IConfiguration config);
12  }
13 }
Defines the contract for the configuration node of a component within the system or of the system its...