* XplatUIX11.cs: Fixed menu coord calculations
[mono.git] / web / tdsclient
index 3d4364924aaaba480213a61596ea5e1ca4977b7c..2c58aea698f10ae8c6222e894ffb5005163eece4 100755 (executable)
        
        <li>Uses TDS Protocol Version 4.2 by default</li>
        
-       <li>Does not support trusted connections</li>
+       <li>Bugs with Mono or the data provider should be reported 
+       in Mono's Bugzilla <a href="http://bugzilla.ximian.com/">here</a>.  If you
+       do not have Bugzilla user account, it is free 
+       and easy to 
+       create one <a href="http://bugzilla.ximian.com/createaccount.cgi">here</a>.</li>
+
 </ul>
 
 ** Current Status
        <li>Located at mcs/class/System.Data/Test is a test for System.Data.SqlClient
        named SqlTest.cs and you could use this as a basis for your test.</li>
        
+               <li>Has a connection string format:
+<pre>
+ Server=hostname;Database=databaseName;User ID=userid;Password=password
+</pre>
+       </li>
+       <li>The Server part can be used two ways:
+               <ul>
+                       <li>hostname - "Server=MYHOST"</li>
+                       <li>hostname,port - "Server=MYHOST,1533"</li>
+               </ul>
+       </li>
+       
        <li>C# Example:
 <pre>
  using System;
           "Password=mypassword;";
        IDbConnection dbcon;
        dbcon = new TdsConnection(connectionString);
+       dbcon.Open();
        IDbCommand dbcmd = dbcon.CreateCommand();
        string sql = 
            "SELECT fname, lname " +
        dbcmd.CommandText = sql;
        IDataReader reader = dbcmd.ExecuteReader();
        while(reader.Read()) {
-            string FirstName = reader["fname"];
-            string LastName = reader["lname"];
+            string FirstName = (string) reader["fname"];
+            string LastName = (string) reader["lname"];
             Console.WriteLine("Name: " + 
                  FirstName + " " + LastName);
        }