From: | Jeff Eckermann <jeff_eckermann(at)yahoo(dot)com> |
---|---|
To: | Sheeraz fazal <ng(at)iwerx(dot)vertextek(dot)com> |
Cc: | pgsql-odbc(at)postgresql(dot)org |
Subject: | Re: parameter to db function |
Date: | 2004-04-13 19:06:31 |
Message-ID: | 20040413190631.66197.qmail@web20810.mail.yahoo.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-odbc |
--- Sheeraz fazal <ng(at)iwerx(dot)vertextek(dot)com> wrote:
> Thanks Jeff.
> Can you tell me if i have to pass parameters to a db
> function let's say it's
> name is
>
> get_square(integer)
>
> It returns square of a number. What will be the
> syntax of the ODBC call to
> invoke this function, and
> how you will specify the place holder for the
> returned value.
I don't do ODBC calls ;-)
Exactly how you handle this depends on your choice of
language and data access library. In general: you
want to send a SQL string "SELECT
get_square(integer_value)", where "integer_value" is
determined at run time. What you get back will be a
result set with one row and one column. If you want
to refer to the column by name, you can specify a name
by adding the alias "AS my_column_name" to the SQL
string.
The rest you can get from the documentation for your
environment, particulary about how SQL queries and
result sets are handled.
>
> Thanks.
>
> ----- Original Message -----
> From: "Jeff Eckermann" <jeff_eckermann(at)yahoo(dot)com>
> To: "Sheeraz fazal" <ng(at)iwerx(dot)vertextek(dot)com>;
> <pgsql-odbc(at)postgresql(dot)org>
> Sent: Tuesday, April 13, 2004 7:43 AM
> Subject: Re: [ODBC] parameter to db function
>
>
> > --- Sheeraz fazal <ng(at)iwerx(dot)vertextek(dot)com> wrote:
> > > Hi,
> > >
> > > Is it allowed to pass parameters to a db
> function
> > > through ODBC?
> >
> > Yes. Just capture the values in your application,
> > then construct a query string and send it to the
> > server.
> >
> > >
> > > Thanks.
> > >
> > >
> > >
> > > ---------------------------(end of
> > > broadcast)---------------------------
> > > TIP 7: don't forget to increase your free space
> map
> > settings
> >
> >
> >
> >
> >
> > __________________________________
> > Do you Yahoo!?
> > Yahoo! Small Business $15K Web Design Giveaway
> > http://promotions.yahoo.com/design_giveaway/
> >
> > ---------------------------(end of
> broadcast)---------------------------
> > TIP 5: Have you checked our extensive FAQ?
> >
> >
> http://www.postgresql.org/docs/faqs/FAQ.html
> >
> >
>
__________________________________
Do you Yahoo!?
Yahoo! Tax Center - File online by April 15th
http://taxes.yahoo.com/filing.html
From | Date | Subject | |
---|---|---|---|
Next Message | Iain | 2004-04-14 01:17:31 | Re: LOG: unexpected EOF on client connection |
Previous Message | Lothar Behrens | 2004-04-13 19:04:16 | Re: (Fwd) Problems with my code under linux ?? |