DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
IDatabaseClient.cs
Go to the documentation of this file.
1 using System;
2 
4 
5 namespace Deveel.Data.Protocol {
6  public interface IDatabaseClient : IDisposable {
7  IClient Client { get; }
8 
10 
11  bool IsBooted { get; }
12 
13  bool Exist { get; }
14 
15 
16  IServerConnector Create(string adminUser, string adminPassword);
17 
18  IServerConnector Boot();
19 
20  IServerConnector Access();
21  }
22 }
Defines the contract for the configuration node of a component within the system or of the system its...