@@ -84,17 +84,19 @@ To run the Spanner Samples:
84
84
-v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
85
85
86
86
Available commands:
87
- add-column Adds a new column to the Albums table in the example database.
88
87
add-column Adds a new column to the Albums table in the example database.
89
88
add-timestamp-column Adds a commit timestamp column to a table.
90
89
batch-query-data Batch queries sample data from the database using SQL.
91
90
create-database Creates a database and tables for sample data.
92
91
create-index Adds a simple index to the example database.
93
92
create-storing-index Adds an storing index to the example database.
94
93
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.
95
96
help Displays help for a command
96
97
insert-data Inserts sample data into the given database.
97
98
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.
98
100
insert-struct-data Inserts sample data that can be used to test STRUCT parameters in queries.
99
101
list Lists commands
100
102
query-data Queries sample data from the database using SQL.
@@ -103,6 +105,7 @@ To run the Spanner Samples:
103
105
query-data-with-index Queries sample data from the database using SQL and an index.
104
106
query-data-with-nested-struct-field Queries sample data from the database with a nested struct field value.
105
107
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.
106
109
query-data-with-struct Queries sample data from the database with a struct.
107
110
query-data-with-struct-field Queries sample data from the database with a struct field value.
108
111
read-data Reads sample data from the database.
@@ -113,6 +116,14 @@ To run the Spanner Samples:
113
116
read-write-transaction Performs a read-write transaction to update two sample records in the database.
114
117
update-data Updates sample data in the database.
115
118
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.
116
127
117
128
118
129
## Troubleshooting
0 commit comments