`
liuye066
  • 浏览: 266337 次
  • 性别: Icon_minigender_2
  • 来自: 青岛
社区版块
存档分类
最新评论
文章列表
 html代码:   <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; ...
html代码: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; char ...
1.Ext.MessageBox.alert()方法有四个参数,为简单起见,主要介绍前面三个参数:alert( title , msg , function(){} )其中title,msg为必选参数,function为可选参数,在关闭弹出窗口后出发。 Ext.MessageBox.alert("title","msg");   Ext.Mess ...
Strtus2通常情况下使用以下两种方式来访问上述三种对象,即Servlet API解藕和耦合的访问方式。 1.Servlet API解藕方式: Struts2分别对Request、Session和Application三个对象封装成了三个Map对象,直接使用封装好的Map对象来读取和保存数据。可以通过com.opensymphony.xwork2.ActionContext类来得到这三个对象。ActionContext是Action执行的上下文,保存了很多对象如parameters、request、session、application和locale等。通过ActionContext类获取 ...
在页面中给控件加透明度,在各个浏览器都能显示效果的,到现在为止只知道能给图像加。  opacity:0.40;filter:alpha(opacity=40);-moz-opacity:0.4;  用opacity即可。 如:$('#transimg').css({'opacity':'0.4'});   <span id="transparence">中加了#transparence{position:absolute; left:0px; bottom:0px; width:100%; height:50px; background-color:#0 ...
oracle行列转换总结 最近论坛很多人提的问题都与行列转换有关系,所以我对行列转换的相关知识做了一个总结,希望对大家有所帮助,同时有何错疏,恳请大家指出,我也是在写作过程中学习,算是一起和大家学习吧。 行列转换包括以下六种情况:*列转行*行转列*多列转换成字符串*多行转换成字符串*字符串转换成多列*字符串转换成多行 下面分别进行举例介绍。 首先声明一点,有些例子需要如下10g及以后才有的知识:a。掌握model子句,b。正则表达式c。加强的层次查询 讨论的适用范围只包括8i,9i,10g及以后版本。begin: 1、列转行CREATE TABLE t_col_row(ID INT, ...
ognl表达式中的#、%和$ “#”主要有三种用途: 1. 访问OGNL上下文和Action上下文,#相当于ActionContext.getContext();下表有几个ActionContext中有用的属性:
sqlmap配置文件增加的:  <!--存储过程-->        <parameterMap id="procParamMap" class="java.util.HashMap" >      <parameter property="p_sbackCode" jdbcType="VARCHAR" javaType="java.lang.String" mode="IN"/>      <parameter property=& ...
SSIB配置中遇到No result defined for action action.deptAction and result success的错误。 JSP代码: <s:form action="deptAction" namespace="/" > <s:textfield name="deptName" label="用户名"></s:textfield> <s:password name="de ...
  测试网页时出现No configuration found for the specified action: 'deptAction.action' in namespace: ''. Form action defaulting to 'action' attribute's literal value.的警告信息。 JSP代码如下: <s:form action="deptAction.action" > <s:textfield name="deptName" label="用户名"></s:t ...
解决完上个问题后出现的新问题。 Context initialization failed org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'DtDao' defined in ServletContext resource [/WEB-INF/applicationContext.xml]: Invocation of init method failed; nested exception is java.lang.IllegalArgumentException: ...
Struts2+Spring2.5+Ibatis2.3配置过程中报的错误,请高手指教。谢谢。 严重: Context initialization failed org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'DtDao' defined in ServletContext resource [/WEB-INF/applicationContext.xml]: 1 constructor arguments specified but no matching cons ...
从一个日期类型的字段中查询出年份为’2009’的记录的个数 方法1:SELECT COUNT(*) from showfield_personal t where to_char(sysdate,'YYYY') = '2009' 方法2:SELECT COUNT(*) from showfield_personal t where extract(year from t.update_time) = '2009'

利用rownum查询

利用rownum查询7~12之间的记录 select * from (select rownum no ,* from demo) where no between 7 and 12

字符集不匹配

SELECT NEWS_ID,   CASE WHEN NEWS_DATA is not null THEN '(图)' || NEWS_TITLE  ELSE NEWS_TITLE END NEWS_TITLE,   CASE WHEN NEWS_DATA is not null THEN NEWS_DATA ELSE '0' END NEWS_DATA, NEWS_CONTENT || '(本文来源:' || ORIGIN ||')' AS NEWS_CONTENT, UPDATE_TIME FROM NEWS_RES_LIST WHERE NEWS_ID = 1+1 运行会报“字符 ...
Global site tag (gtag.js) - Google Analytics