FunGame-Core/Interface/Base/ISQLHelper.cs
2023-07-14 21:12:14 +08:00

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();
}
}