December 28, 2006 at 5:50 pm
Hi all,
I have an applicaiton that connects to any type of SQL Server and MySQL. I used SQLConnection from c# .NET 2.0. By now all works fine cause I have SQL Server installed on my computer.
The question is: what sould I install on the worstations that don't have any sql server, in order for the application to connect to SQL Server? Is there a universal driver or how can I resolve the problem?
Thanks,
Ionut T.
January 1, 2007 at 8:00 am
This was removed by the editor as SPAM
January 4, 2007 at 2:42 am
The only thing that needs to be installed on the workstations is the .Net Framework 2.0.
Then when you copy your application to the workstations you should make sure that your connection strings are set correctly, eg. by having it in a config file.
No installation of SQL spesific stuff is needed, since the System.Data.SqlClient dll is installed with the framework.
January 6, 2007 at 11:40 pm
How are you connecting to mysql though? if you use ODBC, then you need to install a mysql ODBC driver:
http://dev.mysql.com/downloads/connector/odbc/3.51.html
also there is MySQL Connector/NET which is very similar to SqlClient in the CLR, and would require this download on the client:
http://dev.mysql.com/downloads/connector/net/1.0.html
---------------------------------------
elsasoft.org
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply