`
文章列表
6.5版本用 ALT+/ 不起作用 解决办法 我用的myeclipse5.5 对于System.out.println(); 这个东西我都是syso然后ALT+/会出现System.out.println();,MyEclipse6.5却无任何提示 解决方案:选择MyEclipse6.5菜单栏中的 Window - Preferences -->General --> Keys 内找: 1、把Content Assist的快捷键由ctrl+space改成alt+/。 2、把word completion的快捷键由alt+/设置成其他的不冲突的快捷键即可。 3、点击Ok ...
在MyEclipse中编写Web Project,有3个地方需要改编码设置: 1. window-->preference-->general-->content type 然后在<Content Types>中展开每一个子项,并在<Default encoding>中输入"UTF-8"点update! 2. window-->preference-->MyEclipse-->Files and Editors 将每个子项的"Encoding"改为"ISO 10645/ ...

ibatis CDATA

  在使用ibatis时,经常需要配置待执行的sql语句。使用过ibatis的朋友都知道,无可避免的都会碰到一些不兼容、冲突的字符,多数人也都知道用<![CDATA[   ]]>标记避免Sql中与xml规范相冲突的字符对xml映射文件的合法性造成影响。但是,如果在ibatis中使用了动态语句的时候,还是有一些细节需要注意。下面举例说明一下:   环境:oracle、ibatis、java   错误例1:符号“<=”会对xml映射文件的合法性造成影响   <select id="find" parameterClass="java ...

start with 条件

  select '' || ca.agency_id deviceId,                ca.agency_name deviceName,                '' || ca.par_agency_id parDeviceId           from cs_agency ca         connect by prior ca.par_agency_id = ca.agency_id             --  and ca.par_agency_id != -1          start with ca.agency_id i ...
oracle 截取字符(substr),检索字符位置(instr) case when then else end语句使用 收藏 常用函数:substr和instr1.SUBSTR(string,start_position,[length])    求子字符串,返回字符串解释:string 元字符串       start_position   开始位置(从0开始)       length 可选项,子字符串的个数For example:substr("ABCDEFG", 0); //返回:ABCDEFG,截取所有字符 substr("ABCDEFG&quo ...

js 理解

    博客分类:
  • JS
vechicodelist.jsp  里面有些原因等等js 彭博  oschina

java warning

    博客分类:
  • java
net.sf.json.JSONObject#_fromBean : Property '*' of class * has no read method   有单独的set属性没有用     传参数   var deviceId=$("#deviceId").val(); var startTime = $("#startTime").val(); var endTime = $("#endTime").val(); var url = '${contextPath}/system/videoPla ...
SQL:select count(*)和select count(1)的区别 效果:两者的返回结果是一样的。 意义:当count的参数是具体值时(如count(1),count('a')),count的参数已没有实际意义了。 范围:在统计范围,count(*)和count(1) 一样,都包括对NULL的统计;           count(column) 是不包括NULL的统计。 速度:表沒有主键(Primary key),count(1)比count(*)快;           否则,主键作为count的参数时,count(主键)比count(1)和count(* ...

sql

select t.vechile_code,t.org_name from t_veh_vehicle t where t.vechile_code like '%'|| ? ||'%'
下面是五个在XML文档中预定义好的实体: &lt; < 小于号 &gt; > 大于号 &amp; & 和 &apos; ' 单引号

默认值

ajax的默认请求是post请求

项目sql

  想要得到的结果,得到车牌号所对应 最大日期卡的状态,且卡的状态必须是 在 1,2,3中 原始数据 select t.vechile_code,t.card_code,c.state,t.status,t.craete_date from t_veh_carduse t ,t_acc_card c where t.card_code=c.card_code         1 a1 130002 4 2 2012-11-5 10:05:54 2 a1 130001 4 2 2012-11-5 10:04:52 3 a1 130001 4 2 2012-11-5 10:06:2 ...

不能解决的问题

1 eval('('+s+')')  里面为什么要包一层   2 <input type="submit" name="submit" value="提 交" class="button_tj" id="submit1"   onclick="s()"/>     functin s(){     $.ajax({ type: "POST", url: "some.action", data: ...
24小时的形式显示出来要用HH24 select to_char(sysdate,'yyyy-MM-dd HH24:mi:ss') from dual; select to_date('2005-01-01 13:14:20','yyyy-MM-dd HH24:mi:ss') from dual;   to_date() function 1.日期格式参数 含义说明  D 一周中的星期几  DAY 天的名字,使用空格填充到9个字符  DD 月中的第几天  DDD 年中的第几天

DECODE()函数 用法

 decode(acc.state,                       '4',                       '0',                       '5',                       '0',                       '6',                       '0',                       '',                       '0',                       acc.state) state   decode 中 ' ...
Global site tag (gtag.js) - Google Analytics