using System;
namespace Apewer.Source
{
/// 正在执行的 SQL 语句。
[Serializable]
public sealed class ExecutingStatement
{
///
public long Session { get; set; }
///
public string Status { get; set; }
///
public long CpuTime { get; set; }
///
public long LogicalReads { get; set; }
///
public long Reads { get; set; }
///
public long Writes { get; set; }
///
public double ElapsedTime { get; set; }
///
public string StatementText { get; set; }
///
public string LoginName { get; set; }
///
public string HostName { get; set; }
///
public DateTime LoginTime { get; set; }
///
public long OpenTransactionCount { get; set; }
}
}