4 <li>ADO.NET Provider for older Sybase and Microsoft SQL Server databases</li>
6 <li>Exists in namespace Mono.Data.TdsClient and assembly Mono.Data.TdsClient</li>
8 <li>Created by Tim Coleman</li>
10 <li>Used the <a href="http://www.freetds.org/">FreeTDS</a> and
11 <a href="http://jtds.sourceforge.net/">jTDS</a> projects as resources.</li>
13 <li>Implemented in 100% C#</li>
15 <li>Is similar to the Mono.Data.SybaseClient and System.Data.SqlClient providers.</li>
17 <li>Requires the assembly Mono.Data.Tds.dll which implements the TDS protocol in 100% C#.</li>
19 <li>Uses TDS Protocol Version 4.2 by default</li>
21 <li>Bugs with Mono or the data provider should be reported
22 in Mono's Bugzilla <a href="http://bugzilla.ximian.com/">here</a>. If you
23 do not have Bugzilla user account, it is free
25 create one <a href="http://bugzilla.ximian.com/createaccount.cgi">here</a>.</li>
33 <li>Only builds on Windows currently due to mcs does not support modules and mcs
34 has problems with code that is internal.</li>
36 <li>Able to connect to Microsoft SQL Server and Sybase databases</li>
38 <li>SQL commands can be executed
39 via ExecuteNonQuery() of a TdsCommand.</li>
41 <li>SQL aggregates can be executed and a single row and single column
42 result can be retrieved via ExecuteScalar() of a TdsCommand</li>
44 <li>SQL queries can be executed via ExecuteReader() and results
45 can be retrieved via TdsDataReader.</li>
47 <li>a DataTable with schema info about a result can be gotten via GetSchemaTable()
48 in a TdsDataReader</li>
50 <li>Data can be filled in a DataTable in a DataSet via a TdsDataAdapter</li>
56 <li>Connection timeouts is being developed now.</li>
64 <li>Have a working mono and mcs installed</li>
66 <li>Have access to a Sybase or Microsoft SQL Server database
67 or either download it:
69 <li><a href="http://www.microsoft.com/sql/default.asp">Microsoft SQL Server</a></li>
70 <li><a href="http://www.sybase.com/downloads">Sybase</a></li>
73 <li>If using Microsoft SQL Server 2000, make sure
74 you are using at least Service Pack 3 for Microsoft SQL Server 2000</li>
76 <li>Located at mcs/class/System.Data/Test is a test for System.Data.SqlClient
77 named SqlTest.cs and you could use this as a basis for your test.</li>
79 <li>Has a connection string format:
81 Server=hostname;Database=databaseName;User ID=userid;Password=password
84 <li>The Server part can be used two ways:
86 <li>hostname - "Server=MYHOST"</li>
87 <li>hostname,port - "Server=MYHOST,1533"</li>
95 using Mono.Data.TdsClient;
99 public static void Main(string[] args)
101 string connectionString =
102 "Server=localhost;" +
104 "User ID=myuserid;" +
105 "Password=mypassword;";
107 dbcon = new TdsConnection(connectionString);
109 IDbCommand dbcmd = dbcon.CreateCommand();
111 "SELECT fname, lname " +
113 dbcmd.CommandText = sql;
114 IDataReader reader = dbcmd.ExecuteReader();
115 while(reader.Read()) {
116 string FirstName = (string) reader["fname"];
117 string LastName = (string) reader["lname"];
118 Console.WriteLine("Name: " +
119 FirstName + " " + LastName);
132 <li>Building C# Example:
134 <li>Save the example to a file, such as, TestExample.cs</li>
137 mcs TestExample.cs -r System.Data.dll \
138 -r Mono.Data.TdsClient.dll
141 <li>Build on Windows via Cygwin:
143 mono C:/cygwin/home/MyHome/mono/install/bin/mcs.exe \
145 -lib:C:/cygwin/home/MyHome/mono/install/lib \
146 -r System.Data.dll -r Mono.Data.TdsClient.dll
151 <li>Running the Example: