如何使用JavaScript在Postgresql中创建函数?

时间:2018-09-15 16:48:02

标签: javascript node.js postgresql postgresql-9.4

我是Postgresql的新手。我想创建一个函数并希望调用该函数,但会出现错误“函数json_fun1()不存在”

这是我的代码 函数json_fun1()不存在

drop function json_fun1();
create function json_fun1(out res int)
as
$$
var cs = {name: 'abb'};
var sql = 'insert into artist_docs(body) values($1) returning *;';
var newC = plv8.execute(sql, JSON.stringify(cs));
    var id = newC[0].id
    return id
$$ language plv8;

select json_fun1()

0 个答案:

没有答案