该文被密码保护。 阅读全文
posted @ 2020-05-22 16:34 aipohoo 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-09-09 15:23 aipohoo 阅读(1) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2019-08-21 16:28 aipohoo 阅读(2) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-08-20 16:20 aipohoo 阅读(2) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2016-08-14 16:36 aipohoo 阅读(1) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2016-08-09 18:06 aipohoo 阅读(2) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2016-05-04 15:22 aipohoo 阅读(20) 评论(0) 推荐(0) 编辑
摘要: DataReader读取数据基本步骤 1、创建Command对象 2、调用ExecuteReader()创建DataReader对象 3、使用DataReader的Read()方法逐行读取数据 4、读取某列的数据,(type)dataReader[] 5、关闭DataReader对象 阅读全文
posted @ 2016-04-24 21:32 aipohoo 阅读(111) 评论(0) 推荐(0) 编辑
摘要: DataAdapter 获取数据集DataSet,方法Fill() SqlDataAdapter dad = new SqlDataAdapter("Select Id,Title,Director from Movies", _connectionstring);//sql语句,连接字符DataT 阅读全文
posted @ 2016-04-24 21:27 aipohoo 阅读(117) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data;//必须引入 using System.Data.SqlClient;//必须引入 namespace Command { class Program { ... 阅读全文
posted @ 2016-04-24 20:55 aipohoo 阅读(171) 评论(0) 推荐(0) 编辑