文章分类 -  ADO.net

我的数据访问类库
摘要:using System;using System.Collections;using System.ComponentModel;using System.Data;using System.Data.SqlClient;using System.Data.OleDb;using System.Drawing;using System.Web;using System.Web.SessionSt... 阅读全文
posted @ 2006-07-24 17:59 欧阳 阅读(439) 评论(0) 推荐(0)
SqlDataReader使用
摘要:SqlDataReader myReader = null; SqlConnection mySqlConnection = new SqlConnection("数据库连接"); SqlCommand mySqlCommand = new SqlCommand("select * from customers", mySqlConnection); try { ... 阅读全文
posted @ 2006-07-24 12:05 欧阳 阅读(978) 评论(1) 推荐(0)