Skip to main content

Class DatabaseUtil.SelectFromTableWithDataLimitResponse

Response object for SelectFromTableWithDataLimit.

Namespace: Workspace.XBR.Xperiflow.Utilities.Database

Assembly: Xperiflow.dll

Declaration
public class DatabaseUtil.SelectFromTableWithDataLimitResponse

Properties

DataLimitHit

Whether the data limit was hit while executing the query.

Declaration
public bool DataLimitHit { get; set; }

Message

String containing information regarding the SelectFromTableWithDataLimit execution.

Declaration
public string Message { get; set; }

OutputTable

The DataTable returned by SelectFromTableWithDataLimit. May have fewer rows than a normal select due to the data limit.

Declaration
public DataTable OutputTable { get; set; }

Inherited Members

  • System.Object.Equals(System.Object)
  • System.Object.Equals(System.Object,System.Object)
  • System.Object.GetHashCode
  • System.Object.GetType
  • System.Object.MemberwiseClone
  • System.Object.ReferenceEquals(System.Object,System.Object)
  • System.Object.ToString

Was this page helpful?