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
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 -
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.
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
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;
>