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
path: root/web/odbc
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/odbc
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/odbc')
-rwxr-xr-xweb/odbc49
1 files changed, 49 insertions, 0 deletions
diff --git a/web/odbc b/web/odbc
new file mode 100755
index 00000000000..c911371b619
--- /dev/null
+++ b/web/odbc
@@ -0,0 +1,49 @@
+* ODBC Data Provider
+<ul>
+ <li>Exists in namespace System.Data.Odbc and assembly System.Data
+
+ <li>Works on Windows and Linux
+
+ <li>Works on Windows via the native Windows odbc32.dll
+
+ <li>Works on Linux via <a href="http://www.unixodbc.org/">unixODBC</a>
+
+ <li>List of unixODBC <a href="http://www.unixodbc.org/drivers.html">drivers</a> and
+ an alternative list
+
+ <li>An alternative to unixODBC, but not tested with this
+ provider is <a href="http://www.iodbc.org">iODBC</a>
+
+ <li>List of <a href="http://ourworld.compuserve.com/homepages/Ken_North/odbcvend.htm">ODBC Vendors</a>
+
+ <li>ODBC Provider created by Brian Ritchie.
+</ul>
+
+* Current Status
+
+<ul>
+ <li>Connect on Windows via native Windows odbc32.dll
+
+ <li>Connect on Linux via unixODBC's libodbc.so
+
+ <li>Various databases have been tested using their
+ ODBC drivers: MySQL, Oracle, IBM DB2, and Microsoft SQL Server
+
+ <li>Can execute non-query commands via ExecuteNonQuery of a OdbcCommand
+
+ <li>Can execute aggreates and retrieve a single row single column result via
+ ExecuteScalar of a OdbcCommand
+
+ <li>Can execute queries via ExecuteReader of a OdbcCommand and
+ retrieve results using an OdbcDataReader.
+
+ <li>Can get a DataTable containing schema info via GetSchemaTable() in a OdbcDataReader
+</ul>
+
+* Action Plan
+
+<ul>
+ <li>Create a Data Adapter to Fill data into a DataTable in a DataSet
+
+ <li>TODO
+</ul>