Partager via


USqlTablePreview Constructeurs

Définition

Surcharges

USqlTablePreview()

Initialise une nouvelle instance de la classe USqlTablePreview.

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

Initialise une nouvelle instance de la classe USqlTablePreview.

USqlTablePreview()

Initialise une nouvelle instance de la classe USqlTablePreview.

public USqlTablePreview ();
Public Sub New ()

S’applique à

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

Initialise une nouvelle instance de la classe USqlTablePreview.

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)

Paramètres

totalRowCount
Nullable<Int64>

nombre total de lignes dans la table ou la partition.

totalColumnCount
Nullable<Int64>

nombre total de colonnes dans la table ou la partition.

rows
IList<IList<String>>

les lignes de l’aperçu de la table ou de la partition, où chaque ligne est un tableau de chaînes représentant les valeurs de la ligne. Remarque : les tableaux d’octets apparaissent sous forme de valeurs encodées en base 64, les objets SqlMap et SqlArray apparaissent sous forme d’objets JSON d’échappement, et les objets DateTime apparaissent sous forme de date-heure UTC au format ISO.

truncated
Nullable<Boolean>

true si la quantité de données dans la réponse est inférieure aux attentes en raison des limitations de taille de l’opération d’aperçu. Cela peut se produire si les lignes demandées ou le nombre de lignes sont trop volumineux.

schema
IList<USqlTableColumn>

schéma de la table ou de la partition.

S’applique à