2002-11-12 Daniel Morgan <danmorg@sc.rr.com>
[mono.git] / web / sybase
1 * Sybase Data Provider
2
3 <ul>
4         <li>ADO.NET Provider for Sybase SQL Server databases
5
6         <li>Exists in namespace Mono.Data.SybaseClient and assembly Mono.Data.SybaseClient
7         
8         <li>Created by Tim Coleman
9         
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.
12         
13         <li>Implemented in 100% C#
14         
15         <li>Is similar to the Mono.Data.TdsClient and System.Data.SqlClient providers.
16         
17         <li>Uses TDS Protocol Version 5.0
18         
19         <li><a href="http://www.go-mono.com/tds-providers.html">Design of the Microsoft SQL Server, Sybase, and TDS Providers in Mono</a>
20 </ul>
21
22 * Current Status
23         
24 <ul>    
25         <li>Able to connect to Sybase databases
26         
27         <li>SQL commands can be executed
28         via ExecuteNonQuery() of a SybaseCommand.
29         
30         <li>SQL aggregates can be executed and a single row and single column
31         result can be retrieved via ExecuteScalar() of a SybaseCommand
32         
33         <li>SQL queries can be executed via ExecuteReader() and results 
34         can be retrieved via SybaseDataReader.
35         
36         <li>a DataTable with schema info about a result can be gotten via GetSchemaTable()
37         in a SybaseDataReader
38         
39         <li>Data can be filled in a DataTable in a DataSet via a SybaseDataAdapter
40 </ul>
41
42 * Action plan
43
44 <ul>
45         <li>Connection timeouts is being developed now.
46
47         <li>TODO
48 </ul>