Aracılığıyla paylaş


USqlTablePreview Constructors

Definition

Overloads

USqlTablePreview()

Initializes a new instance of the USqlTablePreview class.

USqlTablePreview(Nullable<Int64>, Nullable<Int64>, IList<IList<String>>, Nullable<Boolean>, IList<USqlTableColumn>)

Initializes a new instance of the USqlTablePreview class.

USqlTablePreview()

Initializes a new instance of the USqlTablePreview class.

public USqlTablePreview ();
Public Sub New ()

Applies to

USqlTablePreview(Nullable<Int64>, Nullable<Int64>, IList<IList<String>>, Nullable<Boolean>, IList<USqlTableColumn>)

Initializes a new instance of the USqlTablePreview class.

public USqlTablePreview (long? totalRowCount = default, long? totalColumnCount = default, System.Collections.Generic.IList<System.Collections.Generic.IList<string>> rows = default, bool? truncated = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataLake.Analytics.Models.USqlTableColumn> schema = default);
new Microsoft.Azure.Management.DataLake.Analytics.Models.USqlTablePreview : Nullable<int64> * Nullable<int64> * System.Collections.Generic.IList<System.Collections.Generic.IList<string>> * Nullable<bool> * System.Collections.Generic.IList<Microsoft.Azure.Management.DataLake.Analytics.Models.USqlTableColumn> -> Microsoft.Azure.Management.DataLake.Analytics.Models.USqlTablePreview
Public Sub New (Optional totalRowCount As Nullable(Of Long) = Nothing, Optional totalColumnCount As Nullable(Of Long) = Nothing, Optional rows As IList(Of IList(Of String)) = Nothing, Optional truncated As Nullable(Of Boolean) = Nothing, Optional schema As IList(Of USqlTableColumn) = Nothing)

Parameters

totalRowCount
Nullable<Int64>

the total number of rows in the table or partition.

totalColumnCount
Nullable<Int64>

the total number of columns in the table or partition.

rows
IList<IList<String>>

the rows of the table or partition preview, where each row is an array of string representations the row's values. Note: Byte arrays will appear as base-64 encoded values, SqlMap and SqlArray objects will appear as escaped JSON objects, and DateTime objects will appear as ISO formatted UTC date-times.

truncated
Nullable<Boolean>

true if the amount of data in the response is less than expected due to the preview operation's size limitations. This can occur if the requested rows or row counts are too large.

schema
IList<USqlTableColumn>

the schema of the table or partition.

Applies to