使用Zend Gdata在Google电子表格中插入数百行?

时间:2010-04-06 18:51:46

标签: php zend-framework gdata google-sheets

使用以下方法从600记录数据集逐个插入行大约需要一个小时:

foreach($people as $person){
    $insert['name'] = $associate -> name;
    $insertedListEntry = $spreadsheetService->insertRow($insert, $spreadsheetKey, $worksheetId);
}

是否可以一次插入多行?

1 个答案:

答案 0 :(得分:3)

没有。见the official Google response on this.

他们建议您并行处理请求以加快插入过程。