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

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Apewer.Source
  5. {
  6. /// <summary>数据库引擎的执行结果。</summary>
  7. public interface IExecute
  8. {
  9. /// <summary>语句执行成功。</summary>
  10. bool Success { get; }
  11. /// <summary>受影响的行数。</summary>
  12. int Rows { get; }
  13. /// <summary>消息。</summary>
  14. string Message { get; }
  15. }
  16. }