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."],[[["This documentation covers the `SpannerBatchNonQueryException` class, which is used to handle errors during batch non-query operations in the Google Cloud Spanner database."],["The latest version available is 5.0.0-beta05, with multiple previous versions listed, and version 4.2.0 serving as a reference point within the documentation."],["`SpannerBatchNonQueryException` inherits from `SpannerException` and implements `ISerializable`, representing a specific type of error related to batch command failures."],["This exception provides details on the failed command, including error code and message, and it also holds data on the number of rows modified by preceding commands that succeeded."],["The class contains a property called `SuccessfulCommandResults`, which includes an `IEnumerable` of type `Int64` that returns the affected row count for each of the successfully executed batch commands."]]],[]]