USqlTablePreview Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.
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
Azure SDK for .NET