AlloyDB v1 API - Class SqlResult (1.9.0)

public sealed class SqlResult : IMessage<SqlResult>, IEquatable<SqlResult>, IDeepCloneable<SqlResult>, IBufferMessage, IMessage

Reference documentation and code samples for the AlloyDB v1 API class SqlResult.

SqlResult represents the result for the execution of a sql statement.

Inheritance

object > SqlResult

Namespace

Google.Cloud.AlloyDb.V1

Assembly

Google.Cloud.AlloyDb.V1.dll

Constructors

SqlResult()

public SqlResult()

SqlResult(SqlResult)

public SqlResult(SqlResult other)
Parameter
Name Description
other SqlResult

Properties

Columns

public RepeatedField<SqlResultColumn> Columns { get; }

List of columns included in the result. This also includes the data type of the column.

Property Value
Type Description
RepeatedFieldSqlResultColumn

Rows

public RepeatedField<SqlResultRow> Rows { get; }

Rows returned by the SQL statement.

Property Value
Type Description
RepeatedFieldSqlResultRow