PostgreSQL:从 C 函数评估 SQL 表达式
我需要编写一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SPI_execute_with_args
听起来更接近您正在寻找的内容。也请查看示例。SPI_execute_with_args
sounds closer to what are you looking for. Check out the examples too.