PostgreSQL:从 C 函数评估 SQL 表达式

发布于 2024-10-15 06:51:22 字数 432 浏览 1 评论 0原文

我需要编写一个 C 函数来扩展我的 PostgreSQL 服务器功能。该函数的参数之一是一个字符串,表示任何返回数字的 PostgreSQL 有效表达式。例如:

  • 3+5*cos(7.4)/8
  • 7
  • 2+2
  • log(34)
  • Degree(0.5)
  • power(9.0, 3.0)
  • 当 8 > 时的情况当 7*5 < 时,2 然后 1 43 then 2 else 3 end

等等

要点是我的函数首先将表达式(变量名称)中的一些值替换为数字,然后它应该执行表达式并返回结果(数字)。使用 PL/pgSQL,我可以使用 EXECUTE expr INTO val,但是我如何在 C 函数中做到这一点?

预先非常感谢,并致以最诚挚的问候

I need to write a C-function to extend my PostgreSQL server functionality. One of the arguments of that function is a string representing any PostgreSQL valid expression returning a number. For example:

  • 3+5*cos(7.4)/8
  • 7
  • 2+2
  • log(34)
  • degrees(0.5)
  • power(9.0, 3.0)
  • case when 8 > 2 then 1 when 7*5 < 43 then 2 else 3 end

and so on

The point is my function first replaces some values in the expression (variable names) for numbers and then it should execute the expression and returns the result (a number). With PL/pgSQL I can use EXECUTE expr INTO val, but how could I do it in a C function?

Many thanks in advance, and best regards

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

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

发布评论

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

评论(1

紫南 2024-10-22 06:51:22

SPI_execute_with_args 听起来更接近您正在寻找的内容。也请查看示例

SPI_execute_with_args sounds closer to what are you looking for. Check out the examples too.

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