mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 03:59:35 +08:00
23 lines
655 B
C#
23 lines
655 B
C#
using System.Data;
|
|
using Milimoe.FunGame.Core.Library.Constant;
|
|
using Milimoe.FunGame.Core.Model;
|
|
|
|
namespace Milimoe.FunGame.Core.Interface.Base
|
|
{
|
|
public interface ISQLHelper
|
|
{
|
|
public FunGameInfo.FunGame FunGameType { get; }
|
|
public string Script { get; set; }
|
|
public CommandType CommandType { get; set; }
|
|
public SQLResult Result { get; }
|
|
public bool Success { get; }
|
|
public SQLServerInfo ServerInfo { get; }
|
|
public int UpdateRows { get; }
|
|
public DataSet DataSet { get; }
|
|
|
|
public int Execute();
|
|
public DataSet ExecuteDataSet();
|
|
public void Close();
|
|
}
|
|
}
|