Add operations for database version 2.

This commit is contained in:
2018-04-12 10:05:42 +01:00
parent 8e999c1b2f
commit de9dc90b86
25 changed files with 4709 additions and 196 deletions

19
Cicm.Database/IDbCore.cs Normal file
View File

@@ -0,0 +1,19 @@
using System.Data;
namespace Cicm.Database
{
public interface IDbCore
{
Operations Operations { get; }
long LastInsertRowId { get; }
bool OpenDb(string server, string user, string database, string password, ushort port);
void CloseDb();
bool CreateDb(string database, string server, string user, string password, ushort port);
IDbDataAdapter GetNewDataAdapter();
}
}