do queries from strings in pgplsql

From: Virgilio Sanz <vsanz(at)el-mundo(dot)net>
To: pgsql-sql(at)postgresql(dot)org
Subject: do queries from strings in pgplsql
Date: 1999-12-01 16:04:23
Message-ID: 19991201170423.E18860@el-mundo.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hi list,

I'm just added to the list and I'm not sure whether the following is a
FAQ or not possible. Anyway, here it goes:

Is it possible to execute a query stored into a string?

I mean, something like:

function test(text) as returns opaque as '
declare
v_weekday alias for $1;
s_qry text; rec record;
begin
s_qry = ''select field1,field2, '' || v_weekday || '' from t_diary'';
for rec in exec_sql(s_qry)
loop
-- ^ that is what I'm looking for...
-- [do what is needed]
end loop;
end;
' language 'plpgsql';

Thanks in advance,
Virgilio Sanz

--
Virgilio Sanz vsanz(at)el-mundo(dot)net virgilio(dot)sanz(at)el-mundo(dot)es
Diario el Mundo en Internet http://www.el-mundo.es

Email me with "send key pub" on subject to get my public key

"Success covers a multitude of blunders."
-- George Bernard Shaw

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Tom Lane 1999-12-01 16:19:42 Re: [SQL] VACUUM PROBLEM
Previous Message Gerhard Dieringer 1999-12-01 14:50:09 Antw: [SQL] Partial Search