File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111This client supports the following Google Cloud Platform services:
1212
1313* [ Google BigQuery] ( #google-bigquery )
14- * [ Google Cloud Bigtable] ( #google-bigtable )
14+ * [ Google Cloud Bigtable] ( #google-cloud- bigtable )
1515* [ Google Cloud Datastore] ( #google-cloud-datastore )
1616* [ Google Cloud DNS] ( #google-cloud-dns )
1717* [ Google Cloud Pub/Sub] ( #google-cloud-pubsub )
@@ -149,7 +149,27 @@ table.getRows(function(err, rows) {});
149149// Update a row in your table.
150150var row = table .row (' alincoln' );
151151
152- row .save (' follows:gwashington' , 1 , function (err ) {});
152+ row .save (' follows:gwashington' , 1 , function (err ) {
153+ if (err) {
154+ // Error handling omitted.
155+ }
156+
157+ row .get (' follows:gwashington' , function (err , data ) {
158+ if (err) {
159+ // Error handling omitted.
160+ }
161+
162+ // data = {
163+ // follows: {
164+ // gwashington: [
165+ // {
166+ // value: 1
167+ // }
168+ // ]
169+ // }
170+ // }
171+ });
172+ });
153173```
154174
155175
You can’t perform that action at this time.
0 commit comments