You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
444 B
23 lines
444 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Apewer.Source
|
|
{
|
|
|
|
/// <summary>数据库引擎的执行结果。</summary>
|
|
public interface IExecute
|
|
{
|
|
|
|
/// <summary>语句执行成功。</summary>
|
|
bool Success { get; }
|
|
|
|
/// <summary>受影响的行数。</summary>
|
|
int Rows { get; }
|
|
|
|
/// <summary>消息。</summary>
|
|
string Message { get; }
|
|
|
|
}
|
|
|
|
}
|
|
|