[GENERAL] Want FUNCTION to return argv[0] thru argv[6]

2010-07-28 Thread Jerry Richards
Hello, I am using postgres-odbc and I created the following function which is called from a C-application. This function returns a single argv[0] of the form (a,b,c,d,e,f,g). CREATE OR REPLACE FUNCTION PresRoute(int, int) RETURNS TABLE(d1 text, d2 text, d3 text, d4 text, r1 bigint, r2 bigint,

Re: [GENERAL] Want FUNCTION to return argv[0] thru argv[6]

2010-07-28 Thread Merlin Moncure
On Wed, Jul 28, 2010 at 12:06 PM, Jerry Richards jerry.richa...@teotech.com wrote: Hello, I am using postgres-odbc and I created the following function which is called from a C-application.  This function returns a single argv[0] of the form (a,b,c,d,e,f,g). CREATE OR REPLACE FUNCTION