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>2003-01-26 20:15:39 +0300
committerDaniel Morgan <monodanmorg@yahoo.com>2003-01-26 20:15:39 +0300
commit726fef391cc423f85f0dd1a40a00c63cdfb7a570 (patch)
treea2bf2ee9a60d2184587baa5b9db31ace65b9da95 /web/oracle
parent004900840b85a18fbe942de1684c44f613962cb4 (diff)
2003-01-26 Daniel Morgan <danmorg@sc.rr.com>
* doc/index * doc/ado-net * doc/firebird * doc/ibmdb2 * doc/mysql * doc/odbc * doc/oledb * doc/oracle * doc/postgresql * doc/sqlclient * doc/sqlite * doc/sybase * doc/tdsclient: corrections svn path=/trunk/mono/; revision=10921
Diffstat (limited to 'web/oracle')
-rwxr-xr-xweb/oracle5
1 files changed, 4 insertions, 1 deletions
diff --git a/web/oracle b/web/oracle
index e69f378b1a9..c037ac22cb1 100755
--- a/web/oracle
+++ b/web/oracle
@@ -32,6 +32,9 @@
the makefile.gnu for System.Data.OracleClient or csc/.net via the
System.Data.OracleClient.build nant build file. There is also a Visual Studio.NET
solution it too.
+
+ <li>Can NOT retrieve data yet. ExecuteReader() and ExecuteScalar() in OracleCommand
+ and OracleDataReader need to be implemented.</li>
</ul>
@@ -107,7 +110,7 @@
"'Cook'," +
"23021," +
"20)";
- dbcmd.ConnectionString = sql;
+ dbcmd.CommandText = sql;
dbcmd.ExecuteNonQuery();
dbcmd.Dispose();
dbcmd = null;