Partilhar via


USqlTablePreview Construtores

Definição

Sobrecargas

USqlTablePreview()

Inicializa uma nova instância da classe USqlTablePreview.

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

Inicializa uma nova instância da classe USqlTablePreview.

USqlTablePreview()

Inicializa uma nova instância da classe USqlTablePreview.

public USqlTablePreview ();
Public Sub New ()

Aplica-se a

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

Inicializa uma nova instância da 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)

Parâmetros

totalRowCount
Nullable<Int64>

o número total de linhas na tabela ou partição.

totalColumnCount
Nullable<Int64>

o número total de colunas na tabela ou partição.

rows
IList<IList<String>>

as linhas da visualização de tabela ou partição, em que cada linha é uma matriz de representações de cadeia de caracteres dos valores da linha. Observação: as matrizes de bytes serão exibidas como valores codificados em base 64, os objetos SqlMap e SqlArray aparecerão como objetos JSON com escape e os objetos DateTime aparecerão como datas-hora UTC formatadas em ISO.

truncated
Nullable<Boolean>

true se a quantidade de dados na resposta for menor do que o esperado devido às limitações de tamanho da operação de visualização. Isso pode ocorrer se as linhas ou contagens de linhas solicitadas forem muito grandes.

schema
IList<USqlTableColumn>

o esquema da tabela ou partição.

Aplica-se a