On Fri, Mar 30, 2007 at 12:19:44PM +0300, Andrus wrote: > Any idea how to write server-side stored procedures in C# for PostgreSQL > database ? > > In windows .NET 2 framework should be used and in Linuc/Mac/Windows MONO > should be used for this. > > How to install MONO engine as server-side language to PostgreSQL ? > > How to call .NET dlls from PostgreSQL stored procedure ? This is not currently supported. PostgreSQL supports a lot of languages, but C#/.Net is not one of them. You could call them through a CLR launcher, but that's going to be a lot of work for you. //Magnus