In Spanner batched commands are executed sequentially in the order they are received.
If one command fails then the following commands won't be executed.
This exception contains the error code and error message corresponding to the command that failed.
It also contains the number of rows modified by each of the commands that executed successfully.
Properties
SuccessfulCommandResults
public IEnumerable<long> SuccessfulCommandResults { get; }
Returns the affected rows for each of the batch commands that executed succesfully.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-21 UTC."],[[["The `SpannerBatchNonQueryException` class represents errors that occur during batch non-query operations in the Spanner database."],["This exception inherits from `SpannerException` and implements the `ISerializable` interface, providing error details and serialization capabilities."],["It details the failure of a command in a batched operation, where sequential execution means subsequent commands won't run after an error."],["The `SuccessfulCommandResults` property lists the number of rows modified by each batch command that executed before the failure."],["The documentations covers versions ranging from 3.5.0 to 5.0.0-beta05 of the `Google.Cloud.Spanner.Data` with version 4.3.0 being the targeted version for this specific page."]]],[]]