`
javaEEdevelop
  • 浏览: 876479 次
  • 性别: Icon_minigender_1
  • 来自: 广州
文章分类
社区版块
存档分类
最新评论
文章列表
function jsonToString (obj){ var THIS = this; switch(typeof(obj)){ case 'string': return '"' + obj.replace(/(["\\])/g, '\\$1') + '"'; case 'array': return '[' + obj.map(THIS.jsonToStrin ...
1.web.xml <!--加载spring config--> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationContext.xml</param-value> </context-param> <listener> <listener-class> org.springframework.web. ...
一直用tomcat一段时间都正常无事,最近一次启动tomcat就发生以下异常: 严重: IOException while loading persisted sessions: java.io.EOFException严重: Exception loading sessions from persistent storage原因是tomcat对硬盘的session读取失败,彻底解决办法一下:将work下面的文件清空,主要是*.ser文件,或者只是删除掉session.ser即可以解决。
select a.branchcode, (case a.branchname when '全国' then '全国' when '广东' then '粤' when '湖南' then '湘' when '湖北' then '鄂' when '四川' then '川' when '山东' then '鲁' ...
  --自定义例外   create or replace sp_test(password in varchar2,id in number) is --定义部分 myexception exception; begin --执行部分 update user set password=password where id=id; --sql%notfound便是没有更新数据是返回true if sql%notfound then; --当没有更新数据时 raise myexception;--触发myexception异常 end i ...
create or replace package pck_users as type user_cursor is ref cursor; end pck_users create or replace procedure fenye ( tableName in varchar2, --表名 pageIndex in number, --显示的页数 pagetotal in number, --每页显示的条数 sortName in varchar2,--排序的字段 sortDesc in varchar2,--升序还是降序 ...
ACCESS_INTO_NULL 未定义对象 CASE_NOT_FOUND CASE 中若未包含相应的 WHEN ,并且没有设置 ELSE 时 COLLECTION_IS_NULL 集合元素未初始化 CURSER_ALREADY_OPEN 游标已经打开 DUP_VAL_ON_INDEX 唯一索引对应的列上有重复的值 INVALID_CURSOR
InputStream ins=null; BufferedReader br =null; ins=new FileInputStream(new File("D:\\text.xml")); //new InputStreamReader(ins,"UTF-8")也可以指定读取的字符编码 br=new BufferedReader(new InputStreamReader(ins)); int length=-1; String xml=""; long beginTime=System.currentTimeM ...
//if then create or replace procedure sp_test(num number) is --定义部分 begin --执行部分 if num=1 then dbms_output.put_line('等于1'); end if; end; // if .. then else create or replace procedure sp_test(num number) is --定义部分 begin --执行部分 if num=1 then dbms_o ...
//oralce定义标量(scalar) declare v_name varchar(20); //定义一个varchar长度20的变量 declare v_number number(5,2); //定义一个number长度5,精度2的变量 declare v_no number(5,2):=999.99; //定义一个number长度5,精度2的变量,并附值999.99 declare date;//定义一个d ...
set serveroutput on //显示信息 show error; //sql*plus显示错误信息 //只有定义部分的块 begin dbms_output.put_line('hello word'); end; //有定义部分还有执行部分 declare name varchar2(20); --定义部分 begin --执行部分 select name into name from user where id=10; dbms_output.put_line(name); end; //有定义部分、执 ...
Statement //stmt PreparedStatement //pstmt CallableStatement //cstmt 上面三个都可以,但是区别,我认为 Statement //既不能带进参数,也没有带出参数 stmt=con.createStatement(); //得到Statement对象 stmt.execute("call sp_test(1)"); PreparedStatement //只能带进,不能带出 pstmt=con.prepareStatement("cal ...
       笔记
create index indexname on table(name); drop index indexname ;    
    //用alert修改约束除了not null外,改变其它的约束都要加constraint关键字,比如 alert table table_1 add[modify] username not null; alert table table_1 add constraint pk_userid primary (userid); alert table table_1 add constraint fk_userid foreign key (userid) references user(userid); alert table table_1 add const ...
Global site tag (gtag.js) - Google Analytics