[Mono-list] Updated version of my monoupdater script

2005-08-22 Thread Paul
Hi, Following the discussions on what the different versions of the gtk-sharp bootstrap config files do, I've updated the monoupdater script to reflect what went on. Only problem is that it relies on the system being rpm based (I'm working on a fix for tomorrow). There are other changes to the s

Re: [Mono-list] WebServices and Databases

2005-08-22 Thread Kornél Pál
See http://msdn.microsoft.com/library/en-us/cpgenref/html/gngrfassemblydirectivesyntax.asp And put Npgsql.dll to the bin directory of the web application or install it to the GAC. Mono comes with Npgsql.dll in the GAC but you have to install it on .NET Framework. Kornél - Original Message -

Re: [Mono-list] WebServices and Databases

2005-08-22 Thread Gonzalo Paniagua Javier
On Mon, 2005-08-22 at 15:21 -0400, Steven Bell wrote: > Hi, > > This is probably a basic question, but I am a bit stumped. > I would like to write a webservice to access a Postgresql database. > How do I attach a reference to the asmx file, so it can find Npgsql.dll? Use the @Assembly directive.

[Mono-list] WebServices and Databases

2005-08-22 Thread Steven Bell
Hi, This is probably a basic question, but I am a bit stumped. I would like to write a webservice to access a Postgresql database. How do I attach a reference to the asmx file, so it can find Npgsql.dll? steve ___ Mono-list maillist - Mono-list@lists

Re: [Mono-list] Array of pointers failure in SVN HEAD.

2005-08-22 Thread Paolo Molaro
On 08/16/05 Steven Kirk wrote: > namespace ConsoleApplication1 { >class Program { >static unsafe void Main(string[] args) { >int[] i = new int[] { 10 }; >fixed (int* p = i) { >int*[] q = new int*[] { p }; >*q[0] = 5; >