| From: | Daniel Schuchardt <d(dot)schuchardt(at)prodat-sql(dot)de> |
|---|---|
| To: | pgsql-general(at)postgresql(dot)org |
| Subject: | Access a Field / Column of a resultset by Number |
| Date: | 2009-11-27 15:22:28 |
| Message-ID: | heoqrb$9rv$1@news.hub.org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-general |
hy group,
i currently look for a solution to access a resultset in a db-stored
function by number. in plpgsql thats not possible.
so i checked out plpython. so far so good, thats working:
CREATE OR REPLACE FUNCTION dokv_dorecnokeywords(sqlstatement VARCHAR)
RETURNS VOID AS
$$
rv = plpy.execute(sqlstatement, 1)
|||||->"SELECT * FROM art WHERE ak_nr='TEST'"
s = 'ak_bez' |||| fieldname is static here, should be by number
plpy.notice(s+'='+rv[0][s])
return
$$ LANGUAGE plpythonu;
now i need a solution to get the number of fields as well as the
fieldnames of that resultset and run through all fields (by number or by
name). (i need the fieldname too)
--
Daniel Schuchardt
/Softwareentwicklung/
/http://www.prodat-sql.de/
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Cjkalbente | 2009-11-27 15:44:05 | Re: Mysql migration to Postgresql |
| Previous Message | Tom Lane | 2009-11-27 15:20:40 | Re: date_trunct() and start of week |