10 2014 档案
摘要:1.安装:oracle11g server这里的口令为sys和system的密码.(10版本以前默认用户会有系统默认密码.)Oracle 11g 默认用户名和密码oracle11g client:选择server的对应版本安装即可.官网可下载.2.PLSQL配置:1.oci配置:32bit下 直接指...
阅读全文
摘要:jQuery 选择器选择器实例选取*$("*")所有元素#id$("#lastname")id=lastname 的元素.class$(".intro")所有 class="intro" 的元素element$("p")所有 元素.class.class$(".intro.demo")所有 cla...
阅读全文
摘要:Spring.Net 本质就是一个抽象工厂。容器(IApplicationContext)通过配置创建一个对象。1.创建对象(IoC) 初始化容器配置自动提示功能可通过schema文件约束:spring-obj...
阅读全文
摘要:存储过程分页: 1 create proc PR_PagerDataByTop 2 @pageIndex int, 3 @pageSize int, 4 @count int out 5 as 6 select top(@pageSize) * from dbo.userInfo where ID ...
阅读全文