如何将 MySQL 表放入 Yahoo Pipe 中?

发布于 2024-11-07 18:14:10 字数 95 浏览 2 评论 0原文

我正在尝试将 MySQL 表中的数据获取到 Yahoo Pipe 中,以尝试它的可能性。如果有必要,我很乐意通过 HTTP 传输该表,有人对方法有任何建议吗?或者有标准方法吗?

I'm trying to get data I've got in a MySQL table into a Yahoo Pipe to experiment with what's possible with it. I'm happy to transmit the table over HTTP if necessary, has anybody any suggestions for a method- or is there a standard way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

心是晴朗的。 2024-11-14 18:14:10

我认为你应该编写一个 Web 服务(或一个方便的 api)来查询数据库。最有可能的是雅虎!管道不支持除 HTTP 之外的协议。除非你实施一些东西,否则不可能。这是一个想法:

  1. 通过 HTTP 参数获取查询。
  2. 在数据库上执行并以 PHP 中的行数组形式获取结果。
  3. 将列名和行放入 XML 或 JSON 视图并发送到客户端。
  4. 我不确定您是否可以在 Yahoo Pipes 上解析 XML 或 JSON,但是如果您可以模仿 RSS/ATOM 类型,那么它就可以工作。

I think you should write a web service (or a handy api) to query database. Most probably Yahoo! Pipes don't support protocols except HTTP. Not possible unless you implement something. Here's an idea:

  1. Get query via HTTP parameters.
  2. Execute on database and get results as an array of rows in PHP.
  3. Put column names and rows to a XML or JSON view and send to the client.
  4. I'm not sure whether you can parse XML or JSON on Yahoo Pipes however if you can mimic RSS/ATOM types it wil work.
忆伤 2024-11-14 18:14:10

管道不直接支持 SQL 类型存储,它都是“平面文件”或 JSON,因此数据客户端的最终使用可能会遇到转换问题。

它们确实有小的存储口袋,可以通过 YQL 模块访问,每个存储口袋的最大容量为 100k,您可以免费拥有 1000 个。

Pipes don't support SQL type storage directly, it's all 'flat file' or JSON so conversion to and from may be an issue for the final use of the data client side.

They do have small storage pockets than can be accessed via the YQL module each has a maximum capacity of 100k and you can have 1000 of them for free.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文