我正在尝试将一组键值对作为参数发送到 postgresql 函数。数组的结构如下 -
array(10) {
["OWNER"]=> string(3) "ERP"
["SOURCE"]=> string(7) "Unknown"
["PRIORITY"]=> string(6) "Medium"
["PREFLOC"]=> string(5) "Dhaka"
["PROBABLE"]=> string(2) "50"
["MAXSIZE"]=> string(4) "1000"
["MINSIZE"]=> string(4) "2000"
["INTAREA"]=> string(14) "Dhaka, Gulshan"
["CVALPRF"]=> string(5) "Great"
["OPPAMOUNT"]=> string(3) "200"
}
函数接受这样的字符串数组参数
CREATE OR REPLACE FUNCTION
document.update_doc_attrib_on_opportunity(p_org_id numeric, p_target_doc_code character varying,
p_target_doc_no numeric, p_doc_attribs character varying[])
现在我想在我的函数中将数组发送到 p_doc_attribs。就像特定的键名一样,我需要在表中插入所需的值。 以下查询需要相应更新 -
'UPDATE use_doc_attribute
SET attrib_value = CASE WHEN attrib_code = ''PREFLOC'' THEN ''' || p_preferred_location || '''
WHEN attrib_code = ''PRIORITY'' THEN ''' || p_priority || '''
WHEN attrib_code = ''PROBABLE'' THEN ''' || p_probability || '''
WHEN attrib_code = ''SOURCE'' THEN ''' || p_source || '''
WHEN attrib_code = ''MAXSIZE'' THEN ''' || p_max_size || '''
WHEN attrib_code = ''MINSIZE'' THEN ''' || p_min_size || '''
WHEN attrib_code = ''INTAREA'' THEN ''' || p_interested_areas || '''
WHEN attrib_code = ''CVALPRF'' THEN ''' || p_client_value_profile || '''
ELSE attrib_value
END
WHERE org_id = ' || p_org_id || '
AND document_no = ' || p_target_doc_no || '
AND document_code = ''' || p_target_doc_code || '''';
attrib_code 将包含键,特定情况下的 attrib_value 将是从 p_doc_attribs 数组中检索到的值。
最佳答案
我不是这方面的专家,但您可以json_encode 数组并将其传递给您的函数,为此您必须对您的函数进行以下更改:
CREATE OR REPLACE FUNCTION document.update_doc_attrib_on_opportunity(
p_org_id numeric,
p_target_doc_code character varying,
p_target_doc_no numeric,
p_doc_attribs JSON)
您的查询可能是这样的:
'UPDATE use_doc_attribute
SET attrib_value = CASE WHEN attrib_code = ''PREFLOC'' THEN ''' || p_doc_attribs['PREFLOC'] || '''
WHEN attrib_code = ''PRIORITY'' THEN ''' || p_doc_attribs['PRIORITY'] || '''
WHEN attrib_code = ''PROBABLE'' THEN ''' || p_doc_attribs['PROBABLE'] || '''
WHEN attrib_code = ''SOURCE'' THEN ''' || p_doc_attribs['SOURCE'] || '''
WHEN attrib_code = ''MAXSIZE'' THEN ''' || p_doc_attribs['MAXSIZE'] || '''
WHEN attrib_code = ''MINSIZE'' THEN ''' || p_doc_attribs['MINSIZE'] || '''
WHEN attrib_code = ''INTAREA'' THEN ''' || p_doc_attribs['INTAREA']|| '''
WHEN attrib_code = ''CVALPRF'' THEN ''' || p_doc_attribs['CVALPRF'] || '''
ELSE attrib_value
END
WHERE org_id = ' || p_org_id || '
AND document_no = ' || p_target_doc_no || '
AND document_code = ''' || p_target_doc_code || '''';
您可以查看以下link更多这样的例子。
编辑
我认为要使其正常工作,您需要安装 PLV8 扩展,您可以找到更多信息 here
为 V 9.1.x 编辑
例如,您可以创建并传递索引数组,创建类似于以下的数组:
[
"ERP",
"Unknown",
"Medium",
"Dhaka",
"50",
"1000",
"2000",
"Dhaka, Gulshan",
"Great",
"200"
]
然后使用 PHP array to postgres array函数将该数组转换并传递给 postgresql 函数,并将查询中使用的数组值更改为基于索引而不是基于键,如下所示:
p_doc_attribs[3]
代替
p_doc_attribs['PREFLOC']
关于php - 从 postgresql 函数参数中检索 php 数组键和值以进行数据库更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32579038/
我有多个ActiveRecord子类Item的实例数组,我需要根据最早的事件循环打印。在这种情况下,我需要打印付款和维护日期,如下所示:ItemAmaintenancerequiredin5daysItemBpaymentrequiredin6daysItemApaymentrequiredin7daysItemBmaintenancerequiredin8days我目前有两个查询,用于查找maintenance和payment项目(非排他性查询),并输出如下内容:paymentrequiredin...maintenancerequiredin...有什么方法可以改善上述(丑陋的)代
我主要使用Ruby来执行此操作,但到目前为止我的攻击计划如下:使用gemsrdf、rdf-rdfa和rdf-microdata或mida来解析给定任何URI的数据。我认为最好映射到像schema.org这样的统一模式,例如使用这个yaml文件,它试图描述数据词汇表和opengraph到schema.org之间的转换:#SchemaXtoschema.orgconversion#data-vocabularyDV:name:namestreet-address:streetAddressregion:addressRegionlocality:addressLocalityphoto:i
我的代码目前看起来像这样numbers=[1,2,3,4,5]defpop_threepop=[]3.times{pop有没有办法在一行中完成pop_three方法中的内容?我基本上想做类似numbers.slice(0,3)的事情,但要删除切片中的数组项。嗯...嗯,我想我刚刚意识到我可以试试slice! 最佳答案 是numbers.pop(3)或者numbers.shift(3)如果你想要另一边。 关于ruby-多次弹出/移动ruby数组,我们在StackOverflow上找到一
我需要读入一个包含数字列表的文件。此代码读取文件并将其放入二维数组中。现在我需要获取数组中所有数字的平均值,但我需要将数组的内容更改为int。有什么想法可以将to_i方法放在哪里吗?ClassTerraindefinitializefile_name@input=IO.readlines(file_name)#readinfile@size=@input[0].to_i@land=[@size]x=1whilex 最佳答案 只需将数组映射为整数:@land边注如果你想得到一条线的平均值,你可以这样做:values=@input[x]
exe应该在我打开页面时运行。异步进程需要运行。有什么方法可以在ruby中使用两个参数异步运行exe吗?我已经尝试过ruby命令-system()、exec()但它正在等待过程完成。我需要用参数启动exe,无需等待进程完成是否有任何rubygems会支持我的问题? 最佳答案 您可以使用Process.spawn和Process.wait2:pid=Process.spawn'your.exe','--option'#Later...pid,status=Process.wait2pid您的程序将作为解释器的子进程执行。除
我正在使用puppet为ruby程序提供一组常量。我需要提供一组主机名,我的程序将对其进行迭代。在我之前使用的bash脚本中,我只是将它作为一个puppet变量hosts=>"host1,host2"我将其提供给bash脚本作为HOSTS=显然这对ruby不太适用——我需要它的格式hosts=["host1","host2"]自从phosts和putsmy_array.inspect提供输出["host1","host2"]我希望使用其中之一。不幸的是,我终其一生都无法弄清楚如何让它发挥作用。我尝试了以下各项:我发现某处他们指出我需要在函数调用前放置“function_”……这
我有一些Ruby代码,如下所示:Something.createdo|x|x.foo=barend我想编写一个测试,它使用double代替block参数x,这样我就可以调用:x_double.should_receive(:foo).with("whatever").这可能吗? 最佳答案 specify'something'dox=doublex.should_receive(:foo=).with("whatever")Something.should_receive(:create).and_yield(x)#callthere
这个问题在这里已经有了答案:Checktoseeifanarrayisalreadysorted?(8个答案)关闭9年前。我只是想知道是否有办法检查数组是否在增加?这是我的解决方案,但我正在寻找更漂亮的方法:n=-1@arr.flatten.each{|e|returnfalseife
我正在为一个项目制作一个简单的shell,我希望像在Bash中一样解析参数字符串。foobar"helloworld"fooz应该变成:["foo","bar","helloworld","fooz"]等等。到目前为止,我一直在使用CSV::parse_line,将列分隔符设置为""和.compact输出。问题是我现在必须选择是要支持单引号还是双引号。CSV不支持超过一个分隔符。Python有一个名为shlex的模块:>>>shlex.split("Test'helloworld'foo")['Test','helloworld','foo']>>>shlex.split('Test"
我想在一个没有Sass引擎的类中使用Sass颜色函数。我已经在项目中使用了sassgem,所以我认为搭载会像以下一样简单:classRectangleincludeSass::Script::FunctionsdefcolorSass::Script::Color.new([0x82,0x39,0x06])enddefrender#hamlengineexecutedwithcontextofself#sothatwithintemlateicouldcall#%stop{offset:'0%',stop:{color:lighten(color)}}endend更新:参见上面的#re