mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 01:25:40 -05:00
31 lines
909 B
C#
31 lines
909 B
C#
//
|
|
// Copyright (c) Microsoft. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
//
|
|
|
|
using System.Data.Common;
|
|
|
|
namespace Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts
|
|
{
|
|
/// <summary>
|
|
/// Represents a summary of information about a result without returning any cells of the results
|
|
/// </summary>
|
|
public class ResultSetSummary
|
|
{
|
|
/// <summary>
|
|
/// The ID of the result set within the batch results
|
|
/// </summary>
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// The number of rows that was returned with the resultset
|
|
/// </summary>
|
|
public int RowCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// Details about the columns that are provided as solutions
|
|
/// </summary>
|
|
public DbColumn[] ColumnInfo { get; set; }
|
|
}
|
|
}
|