RE: [Mono-devel-list] ByteFX mysql

2005-08-08 Thread Colt D. Majkrzak
:43 PM To: Mono-devel-list@lists.ximian.com Subject: [Mono-devel-list] ByteFX mysql Hi All, I'm a newby with C# and Mono... maybe this is a stupid question : I'm willing to use ByteFX mysql connector, but I don't know how to import or reference it in my project, the 'using' keyword doesn't find

Re: [Mono-devel-list] ByteFX mysql

2005-08-08 Thread Kamil Skalski
You must modify the build process of your project. What are you using? Makefiles, MonoDevelop, Visual Studio? Anyway, you must add ByteFX to referenced assemblies, either by modifying compilation scripts to include mcs sources.cs -r ByteFX.Data.dll or add referenced assembly in your IDE

Re: [Mono-devel-list] ByteFX mysql

2005-08-08 Thread Paul F. Johnson
Hi, The message is 'Main.cs(4) error CS0246: The namespace `ByteFx.Data' can not be found (missing assembly reference?)'. mcs filename.cs -r:ByteFX.Data My sql and C# is really easy - have a look at this using System; using System.Data using ByteFX.Data.MySqlClient; public class mysqlc {

Re: [Mono-devel-list] ByteFX mysql

2005-08-08 Thread Stefano Incontri
Successfull in Visual Studio .NET 1.1 (adding the dll to the reference) but not in linux by command line, I guess the path is missing (referencePath?)... Il giorno lun, 08/08/2005 alle 15.46 +0200, Kamil Skalski ha scritto: You must modify the build process of your project. What are you using?

Re: [Mono-devel-list] ByteFX mysql

2005-08-08 Thread Pascal Fresnay
Stefano Incontri a écrit : Successfull in Visual Studio .NET 1.1 (adding the dll to the reference) but not in linux by command line, I guess the path is missing (referencePath?)... Probably you d'ont have ByteFX.Data.dll installed. You can find it here :