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.

32 lines
933 B

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Apewer.Source
  5. {
  6. /// <summary></summary>
  7. public class Example
  8. {
  9. /// <summary></summary>
  10. public static IExecute InvalidExecuteConnection => new Execute(false, "连接无效。");
  11. /// <summary></summary>
  12. public static IExecute InvalidExecuteStatement => new Execute(false, "语句无效。");
  13. /// <summary></summary>
  14. public static IExecute InvalidExecuteParameters => new Execute(false, "参数无效。");
  15. /// <summary></summary>
  16. public static IQuery InvalidQueryConnection => new Query(false, "连接无效。");
  17. /// <summary></summary>
  18. public static IQuery InvalidQueryStatement => new Query(false, "语句无效。");
  19. /// <summary></summary>
  20. public static IQuery InvalidQueryParameters => new Query(false, "参数无效。");
  21. }
  22. }