Learning PostgreSql: Functions and refcursors

Posted by Alexander Kuznetsov on SQL Blog See other posts from SQL Blog or by Alexander Kuznetsov
Published on Fri, 01 Nov 2013 20:25:00 GMT Indexed on 2013/11/01 22:04 UTC
Read the original article Hit count: 311

Filed under:
|
In this post we shall create a function that returns data, and invoke it from our C# client. There are no stored procedures in PostgreSql, only functions. This is different from T-SQL, but consistent with many other languages, such as C#. Creating a function Functions can return many different types. Learning all the available options might take some time. However, for the project we are working on, we need to replicate several T-SQL stored procedures which take column list as a parameter, and use...(read more)

© SQL Blog or respective owner

Related posts about Agile-learning

Related posts about postgresql