<!-- /* Font Definitions */ @font-face {font-family:宋体; panose-1:2 1 6 0 3 1 1 1 1 1; mso-font-alt:SimSun; mso-font-charset:134; mso-generic-font-family:auto; mso-font-pitch:variable; mso-font-signature:3 135135232 16 0 262145 0;} @font-face {font-family:"/@宋体"; panose-1:2 1 6 0 3 1 1 1 1 1; mso-font-charset:134; mso-generic-font-family:auto; mso-font-pitch:variable; mso-font-signature:3 135135232 16 0 262145 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-parent:""; margin:0cm; margin-bottom:.0001pt; text-align:justify; text-justify:inter-ideograph; mso-pagination:none; font-size:10.5pt; mso-bidi-font-size:12.0pt; font-family:"Times New Roman"; mso-fareast-font-family:宋体; mso-font-kerning:1.0pt;} /* Page Definitions */ @page {mso-page-border-surround-header:no; mso-page-border-surround-footer:no;} @page Section1 {size:595.3pt 841.9pt; margin:72.0pt 89.85pt 72.0pt 89.85pt; mso-header-margin:42.55pt; mso-footer-margin:49.6pt; mso-paper-source:0; layout-grid:15.6pt;} div.Section1 {page:Section1;} -->
ADO.NET数据库连接、操作SQL举例
1.创建类datasource.cs
2.加入SQL命名空间(可以使用SQL数据库语句):using System.Data.SqlClient
3.类中申明对象:(string)ConnString 连接字符串、(SqlConnection)SqlConn 连接SQL数据库、(SqlCommand)SqlCmd 调用SQL语句的方式 、(SqlDataAdapter)SqlAdapter 连接SQL数据适配器、(DataSet)ds 建立数据集、(SqlDataReader)SqlReader 读取数据库。
4.在构造函数中初始化实例对象:
public datasource() { ConnString = ConfigurationManager.ConnectionStrings["某数据源"].ConnectionString; } |
5.创建一些数据集和数据库SQL操作的方法
(1)创建一个内存数据集,使用传入的SQL查询语句参数
public DataSet Tds(string QueryString) |
(2)创建一个内存数据集,不使用任何参数。
public DataSet Tds() |
(3)返回一个只读的轻量级数据源,注意,它不支持服务端的分页,而且需要数据连接必须一直打开
public SqlDataReader Tsdr() |
(4)SQL更新语句:
public void Update(string 字段id, string 字段1, string 字段2...string 字段N) SqlCmd.CommandText = "update 数据表 set [字段名1]=@字段名1,[字段名2]='" + |
(5)SQL删除语句:(用法如上)
public void Delete(string 字段id) |
6.新建一个aspx页面:加入一个GridView表
(1)在配置文件(web.config)中,加入下面一段话:
|
(2)为GridView新建数据源:对象 ->业务对象datasource->select/delete/update/insert 调用相关对象的方法->设置参数sql查询语句,比如select * from abc.
分页设置(属性分页中AllowPage 是否分页?、Pagesize 分页页数。属性行为中的EnableSortingAndPagingCallbacks 是否分页回传)