Re: parameter to db function
От | Jeff Eckermann |
---|---|
Тема | Re: parameter to db function |
Дата | |
Msg-id | 20040413190631.66197.qmail@web20810.mail.yahoo.com обсуждение исходный текст |
Ответ на | parameter to db function ("Sheeraz fazal" <ng@iwerx.vertextek.com>) |
Список | pgsql-odbc |
--- Sheeraz fazal <ng@iwerx.vertextek.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@yahoo.com> > To: "Sheeraz fazal" <ng@iwerx.vertextek.com>; > <pgsql-odbc@postgresql.org> > Sent: Tuesday, April 13, 2004 7:43 AM > Subject: Re: [ODBC] parameter to db function > > > > --- Sheeraz fazal <ng@iwerx.vertextek.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
В списке pgsql-odbc по дате отправления: