mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-21 19:49:34 +08:00
22 lines
680 B
C#
22 lines
680 B
C#
using System.Data;
|
|
using Milimoe.FunGame.Core.Library.Common.Architecture;
|
|
using Milimoe.FunGame.Core.Library.Constant;
|
|
|
|
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 SQLServerInfo ServerInfo { get; }
|
|
public int UpdateRows { get; }
|
|
public DataSet DataSet { get; }
|
|
|
|
public int Execute(out SQLResult Result);
|
|
public DataSet ExecuteDataSet(out SQLResult Result);
|
|
public void Close();
|
|
}
|
|
}
|