@@ -84,17 +84,19 @@ To run the Spanner Samples:
8484 -v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
8585
8686 Available commands:
87- add-column Adds a new column to the Albums table in the example database.
8887 add-column Adds a new column to the Albums table in the example database.
8988 add-timestamp-column Adds a commit timestamp column to a table.
9089 batch-query-data Batch queries sample data from the database using SQL.
9190 create-database Creates a database and tables for sample data.
9291 create-index Adds a simple index to the example database.
9392 create-storing-index Adds an storing index to the example database.
9493 create-table-timestamp Creates a table with a commit timestamp column.
94+ delete-data-with-dml Remove sample data from the given database with a DML statement.
95+ deleted-data-with-partitioned-dml Deletes sample data in the database by partition with a DML statement.
9596 help Displays help for a command
9697 insert-data Inserts sample data into the given database.
9798 insert-data-timestamp Inserts data into a table with a commit timestamp column.
99+ insert-data-with-dml Inserts sample data into the given database with a DML statement.
98100 insert-struct-data Inserts sample data that can be used to test STRUCT parameters in queries.
99101 list Lists commands
100102 query-data Queries sample data from the database using SQL.
@@ -103,6 +105,7 @@ To run the Spanner Samples:
103105 query-data-with-index Queries sample data from the database using SQL and an index.
104106 query-data-with-nested-struct-field Queries sample data from the database with a nested struct field value.
105107 query-data-with-new-column Queries sample data from the database using SQL.
108+ query-data-with-parameter Query DML inserted sample data using SQL with a parameter.
106109 query-data-with-struct Queries sample data from the database with a struct.
107110 query-data-with-struct-field Queries sample data from the database with a struct field value.
108111 read-data Reads sample data from the database.
@@ -113,6 +116,14 @@ To run the Spanner Samples:
113116 read-write-transaction Performs a read-write transaction to update two sample records in the database.
114117 update-data Updates sample data in the database.
115118 update-data-timestamp Updates sample data in a table with a commit timestamp column.
119+ update-data-with-batch-dml Updates sample data in the given database using Batch DML.
120+ update-data-with-dml Updates sample data into the given database with a DML statement.
121+ update-data-with-dml-structs Updates data using DML statement with structs.
122+ update-data-with-dml-timestamp Update sample data from the given database with a DML statement and timestamp.
123+ update-data-with-partitioned-dml Updates sample data in the database by partition with a DML statement.
124+ write-data-with-dml Writes sample data into the given database with a DML statement.
125+ write-data-with-dml-transaction Performs a read-write transaction to update two sample records in the database.
126+ write-read-with-dml Writes then reads data inside a Transaction with a DML statement.
116127
117128
118129## Troubleshooting
0 commit comments