01 2019 档案

摘要:1 --创建存储过程 2 create proc usp_userInfo 3 @pageSize int=7,--每页显示条数 4 @pageIndex int=1,--每页显示页数 5 @pageCount int output ,--显示总的条数 6 @recodNumber int outp 阅读全文
posted @ 2019-01-18 17:36 Valoris 阅读(1821) 评论(0) 推荐(0)
摘要:多条件查询,使用StringBuilder拼接SQL语句,效果如下: 当点击按钮时代码如下: private void button1_Click(object sender, EventArgs e) { //假设表名:Books //列名:BooksName(图书名称) Author(作者) P 阅读全文
posted @ 2019-01-17 17:38 Valoris 阅读(4893) 评论(0) 推荐(0)