Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Morgan <monodanmorg@yahoo.com>2002-11-12 18:53:12 +0300
committerDaniel Morgan <monodanmorg@yahoo.com>2002-11-12 18:53:12 +0300
commit451af388d71c4393a779fd30ea01a3264084961b (patch)
treeea6b9e8822f2f73c2deae609eef6d0387b28c13a /web/tds-providers
parent358d3c04b207dd05c32cf5869a636f621db51ae3 (diff)
2002-11-12 Daniel Morgan <danmorg@sc.rr.com>
* doc/oledb * doc/odbc * doc/mysql * doc/sqlite * doc/sqlclient * doc/tdsclient * doc/sybase * doc/firebird: added web pages for each specific data provider * doc/ado-net * doc/postgresql: updated web page with current status * doc/web/commands * doc/web/makefile: updated to include svn path=/trunk/mono/; revision=8949
Diffstat (limited to 'web/tds-providers')
-rw-r--r--web/tds-providers27
1 files changed, 12 insertions, 15 deletions
diff --git a/web/tds-providers b/web/tds-providers
index e281ef18456..6442e69601a 100644
--- a/web/tds-providers
+++ b/web/tds-providers
@@ -1,10 +1,10 @@
-* Design of the Microsoft SQL Server, Sybase, and TDS Providers in Mono
+* Design of the Microsoft SQL Server, Sybase, and TDS Data Providers in Mono
<ul>
* After much discussion among the Mono ADO.NET developers,
- we have come up with the design of implementing a Sybase and Microsoft
- SQL Server ADO.NET provider. We have already begun implementing
- this design in Mono.
+ we have come up with the design of implementing a Sybase, Microsoft
+ SQL Server, and TDS Generic ADO.NET providers. These providers have
+ been created and are actively developed by Tim Coleman.
* Since Sybase and Microsoft SQL Server databases both
use the TDS protocol for data access, and other implementations
@@ -23,23 +23,20 @@
<ol>
<li><p>Mono.Data.SybaseClient namepace and assembly will
hold the ADO.NET provider for Sybase SQL Server database.
- This provider will default to using TDS version 5.0 which
- can only be used with Sybase.
+ This provider uses TDS version 5.0 which
+ can only be used with Sybase databases.
<li><p>System.Data.SqlClient namespace and System.Data assembly
will hold the ADO.NET provider
- for Microsoft SQL Server 7.0/2000 databases. This is to be
- compatible with Microsoft .NET
- This provider will default to using TDS version 7.0
- which only supports Microsoft SQL Server 7.0/2000 just like
- SqlClient in Microsoft .NET does. There is TDS version of 8.0
+ for Microsoft SQL Server 7.0/2000 databases. This provider is to be
+ compatible with SqlClient in Microsoft .NET and uses TDS version 7.0
+ which only supports Microsoft SQL Server 7.0/2000.
+ There is TDS version 8.0
which we will need to support as well, but it is used for
Microsoft SQL Server 2000 databases.
- <li><p>Mono.Data.TdsClient namespace and assembly is not
- meant to be an ADO.NET provider in Mono, but a means to
- provide generic unit tests for the TDS functionality shared by the SqlClient
- and SybaseClient providers. This provider will default to
+ <li><p>Mono.Data.TdsClient namespace and assembly is a generic
+ provider for older TDS databases. This provider will default to
using TDS version 4.2 which can be used by older Sybase and
Microsoft SQL Server databases.
</ol>