Zend_Gdata_Spreadsheets:如何有效地删除和插入 2 列新数据
案例:
具有 2 列数据的电子表格。这些列被命名为“名字”和“姓氏”。 数据集的一些示例:“John Bond”和“Stive Colins”等。
我需要删除上面的列数据并在这些列中插入一些新数据。
应该使用 Zend_Gdata_Spreadsheets 类以有效的方式完成。
谢谢
The case:
Spreadsheets that have 2 columns with data. The columns are named "first name" and "last name".
Some examples of datasets: "John Bond" and "Stive Colins" etc.I need to delete the above columns data and insert some new data into these columns.
It should be done in an efficient way with Zend_Gdata_Spreadsheets class.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以使用updateRow或deleteRow
我觉得更新行是更好的选择,因为它是一个请求,如果删除行你需要删除并重新插入它需要调用api两次
You can use updateRow or deleteRow
I feel update row is better option as it is one request, in case of delete row u need to delete and reinsert it needs to call api twice