a column defination list is required for functions returning 'record' [modified]
Database
1
Posts
1
Posters
0
Views
1
Watching
-
why I am getting the above error when trying to run this code with PostgreSQL on C# .NET application? how can I fix it?
CREATE OR REPLACE FUNCTION fn_get_resume_details2(resume_id integer)
RETURNS SETOF record AS$$select resume_id, resume_title, objective_title, objective_text, summary_title, summary_text from resume_details where resume_id = resume_id;
$$LANGUAGE sql;</pre>
modified on Monday, November 1, 2010 9:55 AM