Class BaseResult
Base abstract class that defines elements inherited by all result types.
Namespace: MySqlX.XDevAPI.Common
Assembly: MySql.Data.dll
Version: 9.3.0
Syntax
public abstract class BaseResult
Properties
AffectedItemsCount
Gets the number of records affected by the statement that generated this result.
Declaration
public ulong AffectedItemsCount { get; }
Property Value
Type | Description |
---|---|
System. |
Protocol
Gets the Protocol
Declaration
protected ProtocolBase Protocol { get; }
Property Value
Type | Description |
---|---|
Protocol |
Warnings
Gets a read-only collection of Warning
Declaration
public ReadOnlyCollection<WarningInfo> Warnings { get; }
Property Value
Type | Description |
---|---|
System. |
WarningsCount
Gets the number of warnings in the Warnings collection derived from statement execution.
Declaration
public int WarningsCount { get; }
Property Value
Type | Description |
---|---|
System. |
Methods
Buffer()
No action is performed by this method. It is intended to be overriden by child classes if required.
Declaration
protected virtual void Buffer()