摘要:
T-SQL编程 1.声明变量--declare @name nvarchar(50)--declare @age int declare @name nvarchar(50),@age int --2.为变量赋值set @name='刘亚龙' select @age=18 --3.输出select 阅读全文
摘要:
一、分页存储过程 二、ADO调用存储过程 效果图: 三.通过ado.net调用存储过程与调用带参数的SQL语句的区别。1>把SQL语句变成了存储过程名称2>设置SqlCommand对象的CommandType为CommandType.StoredProcedure 这步本质 就是在 存储过程名称前面 阅读全文
摘要:
TblArea 字段 AreaId、 AreaName、AreaPid select t1.AreaId 城市编号, t2.AreaName 城市名称, t1.AreaName 省份名称from TblArea as t1inner join TblArea as t2 on t1.AreaId=t 阅读全文
摘要:
来源:传智播客 免费开发视频。 问题:根据书名或出版社或作者查询书籍信息。 知识点: 1.sql拼接 2.参数化查询 3以下部分看起来简单,但却很难想到。 阅读全文
摘要:
转载:https://www.cnblogs.com/xcsn/p/3490543.html 获取控制器名称: ViewContext.RouteData.Values["controller"].ToString(); 获取Action名称: ViewContext.RouteData.Value 阅读全文
摘要:
转载:https://www.cnblogs.com/crazy-fox/archive/2012/01/08/2316499.html 转载:http://www.jb51.net/article/44561.htm jquery.cookie中的操作: jquery.cookie.js是一个基于 阅读全文