mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
19 lines
435 B
C#
19 lines
435 B
C#
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();
|
|
}
|
|
} |