RE: [Mono-dev] MySql Connectivity in Mono/xsp for linux

2005-12-01 Thread Reggie Burnett
, November 30, 2005 3:13 PM To: mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] MySql Connectivity in Mono/xsp for linux [EMAIL PROTECTED] wrote: Hello, I'm currently using VS.Net 2003 to write some asp.NET/C# pages and I'm trying to connect it with MySQL 5.0. I've

[Mono-dev] MySql Connectivity in Mono/xsp for linux

2005-11-30 Thread ejaz . butt
Hello, I'm currently using VS.Net 2003 to write some asp.NET/C# pages and I'm trying to connect it with MySQL 5.0. I've installed MySql connector (MySql.Data.dll)and it works fine with .Net Framework on windows. but once I attempt to move the asp.NET pages to the linux(fedora) mono/xsp server

Re: [Mono-dev] MySql Connectivity in Mono/xsp for linux

2005-11-30 Thread Robert Jordan
[EMAIL PROTECTED] wrote: Hello, I'm currently using VS.Net 2003 to write some asp.NET/C# pages and I'm trying to connect it with MySQL 5.0. I've installed MySql connector (MySql.Data.dll)and it works fine with .Net Framework on windows. but once I attempt to move the asp.NET pages to

Re: [Mono-dev] MySql Connectivity in Mono/xsp for linux

2005-11-30 Thread Daniel Morgan
You only set it up for the runtime. Mono's C# compiler mcs needs to find the assembly to compile. The GAC is only for the runtime. The C# compiler does not look in the GAC. Wherever your assembly is installed, make sure it can be found via the PATH. [EMAIL PROTECTED] wrote: Hello,