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/sqlite
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/sqlite')
-rwxr-xr-xweb/sqlite2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/sqlite b/web/sqlite
index 85b35c997aa..1cba0bed564 100755
--- a/web/sqlite
+++ b/web/sqlite
@@ -63,7 +63,7 @@
string sql =
"SELECT firstname, lastname " +
"FROM employee";
- dbcmd.ConnectionString = sql;
+ dbcmd.CommandText = sql;
IDataReader reader = dbcmd.ExecuteReader();
while(reader.Read()) {
string FirstName = reader[0];