zend google fusion 表更新
有人知道如何使用 Zend 框架更新 google fusion 中的表吗?
我可以获得数据:
$url = "https://www.google.com/fusiontables/api/query?sql=SELECT%20name%20FROM%201695591";
$data = $gdata->get($url);
$postcodes = $data->getRawBody();
但不知道如何更新一行...... 我知道我必须“调用”这个网址,但不知道如何:
UPDATE table_id SET 列名 = 值 {, 列名 = 值 }* WHERE ROWID = row_id
谢谢
As anyone any idea on how to update a table in google fusion using Zend framework?
I can get the data:
$url = "https://www.google.com/fusiontables/api/query?sql=SELECT%20name%20FROM%201695591";
$data = $gdata->get($url);
$postcodes = $data->getRawBody();
But have no idea how to update a row ...
I know I have to 'call' this url, but no idea how :
UPDATE table_id
SET column_name = value {, column_name = value }*
WHERE ROWID = row_id
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试这个类 http://barahlo.semero.com/description/Zend_Gdata_Fusion.zip
示例使用方法:
Zend_Gdata 的 Oauth 登录:
另外,还有官方的 php 客户端库 http://code.google.com/p/fusion-tables-client-php/
Try this class http://barahlo.semero.com/description/Zend_Gdata_Fusion.zip
Example of usage:
Oauth login for Zend_Gdata:
Also, there is official php client library http://code.google.com/p/fusion-tables-client-php/