Table of Contents

Class SqlBatchException

Namespace
Apache.Ignite.Sql
Assembly
Apache.Ignite.dll

Subclass of {@link SqlException} is thrown when an error occurs during a batch update operation. In addition to the information provided by {@link SqlException},

SqlBatchException
provides the update counts for all commands that were executed successfully during the batch update, that is, all commands that were executed before the error occurred. The order of elements in the array of update counts corresponds to the order in which these commands were added to the batch. *
[Serializable]
public sealed class SqlBatchException : IgniteException, ISerializable
Inheritance
SqlBatchException
Implements
Inherited Members

Constructors

SqlBatchException(Guid, int, string?, Exception?)

Initializes a new instance of the SqlBatchException class.

public SqlBatchException(Guid traceId, int code, string? message, Exception? innerException = null)

Parameters

traceId Guid

Trace id.

code int

Code.

message string

Message.

innerException Exception

Inner exception.