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
32 lines
933 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Apewer.Source
|
|
{
|
|
|
|
/// <summary></summary>
|
|
public class Example
|
|
{
|
|
|
|
/// <summary></summary>
|
|
public static IExecute InvalidExecuteConnection => new Execute(false, "连接无效。");
|
|
|
|
/// <summary></summary>
|
|
public static IExecute InvalidExecuteStatement => new Execute(false, "语句无效。");
|
|
|
|
/// <summary></summary>
|
|
public static IExecute InvalidExecuteParameters => new Execute(false, "参数无效。");
|
|
|
|
/// <summary></summary>
|
|
public static IQuery InvalidQueryConnection => new Query(false, "连接无效。");
|
|
|
|
/// <summary></summary>
|
|
public static IQuery InvalidQueryStatement => new Query(false, "语句无效。");
|
|
|
|
/// <summary></summary>
|
|
public static IQuery InvalidQueryParameters => new Query(false, "参数无效。");
|
|
|
|
}
|
|
|
|
}
|