Import Rows
|
|||||
|
|
Imports more rows into a table
Authorization
To use this building block you will have to grant access to at least one of the following scopes:
- Manage your Fusion Tables
Input
This building block consumes 6 input parameters
Name | Format | Description |
---|---|---|
tableId Required |
STRING |
The table into which new rows are being imported |
delimiter |
STRING |
The delimiter used to separate cell values. This can only consist of a single character. Default is , |
encoding |
STRING |
The encoding of the content. Default is UTF-8. Use auto-detect if you are unsure of the encoding |
endLine |
INTEGER |
The index of the line up to which data will be imported. Default is to import the entire file. If endLine is negative, it is an offset from the end of the file; the imported content will exclude the last endLine lines |
isStrict |
BOOLEAN |
Whether the imported CSV must have the same number of values for each row. If false, rows with fewer values will be padded with empty values. Default is true |
startLine |
INTEGER |
The index of the first line from which to start importing, inclusive. Default is 0 |
= Parameter name
= Format
tableId STRING Required The table into which new rows are being imported |
delimiter STRING The delimiter used to separate cell values. This can only consist of a single character. Default is , |
encoding STRING The encoding of the content. Default is UTF-8. Use auto-detect if you are unsure of the encoding |
endLine INTEGER The index of the line up to which data will be imported. Default is to import the entire file. If endLine is negative, it is an offset from the end of the file; the imported content will exclude the last endLine lines |
isStrict BOOLEAN Whether the imported CSV must have the same number of values for each row. If false, rows with fewer values will be padded with empty values. Default is true |
startLine INTEGER The index of the first line from which to start importing, inclusive. Default is 0 |
Output
This building block provides 2 output parameters
Name | Format | Description |
---|---|---|
kind |
STRING |
The kind of item this is. For an import, this is always fusiontables#import |
numRowsReceived |
INTEGER |
The number of rows received from the import request |
= Parameter name
= Format
kind STRING The kind of item this is. For an import, this is always fusiontables#import |
numRowsReceived INTEGER The number of rows received from the import request |