TDV Adapter for Google Sheets

Build 22.0.8462

InsertDataOption

Determines how existing data is changed when new data is input.

Possible Values

Overwrite, InsertRows

Data Type

string

Default Value

"Overwrite"

Remarks

Overwrite

The new data replaces the contents of the row after the last row in the table. Note that this could potentially overwrite data after the last row in the table, as the adapter stops returning rows if it encounters a blank row.

See Tables for more information on how the adapter discovers tables from the spreadsheet data.

InsertRowsThe adapter will insert a new row at the line specified (or at the end of the table). This avoids overwriting data below the table by incrementing the Ids of all rows below by one. It also allows you to insert data between existing rows -- the following query inserts a new row 2. The existing row 2 becomes row 3, row 3 becomes row 4, and so on.
INSERT INTO Spreadsheet1_Sheet1(Id,Name, Amount) VALUES (2,'Test', 10)

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8462