上一页 1 ··· 8 9 10 11 12

2015年11月4日

oracle 新建用户

摘要: create user his_yhkf identified by "123456";grant dba to his_yhkf; 阅读全文

posted @ 2015-11-04 21:02 ..小树苗 阅读(152) 评论(0) 推荐(0) 编辑

2015年10月26日

js密码的匹配正则

摘要: 匹配的密码是 数字大写或者小写的字母、符号。1 if(pwd.match(/[\d]/) && pwd.match(/[A-Za-z]/) && pwd.match(/[^\da-zA-Z]/)){js日期比较 1 function checkDatetime(){ 2 var a... 阅读全文

posted @ 2015-10-26 19:11 ..小树苗 阅读(723) 评论(0) 推荐(0) 编辑

2015年10月23日

oracle导入和导出和授权

摘要: 1导入数据库: 2 imp demo/123456@orcl file=d:/bak_1023.dmp full=y ignore=y 3 导出数据库: 4 exp demo/123456@orcl file=d:/bak_1023.dmpexp yhtj/123456@127.0.0.1:1521/orcl file=d:\tijian.dmp 1 create user lis_x... 阅读全文

posted @ 2015-10-23 20:21 ..小树苗 阅读(1446) 评论(0) 推荐(0) 编辑

oracle存储过程语法

摘要: 1 create or replace procedure lis_zhifang_return_confirm(barcode in varchar2,deptcode1 in varchar2)2 as3 begin4 update clc_recipe r set r.deptco... 阅读全文

posted @ 2015-10-23 16:15 ..小树苗 阅读(320) 评论(0) 推荐(0) 编辑

2015年10月21日

java.lang.NumberFormatException: For input string: "26.0"

摘要: 数据类型转化的时候的错误:程序中要转的字符串不是一个数字,所以在format成数字的时候就出错了。 字符串不符合数字预定格式。 阅读全文

posted @ 2015-10-21 16:24 ..小树苗 阅读(840) 评论(0) 推荐(0) 编辑

ORACLE中根据生日得到年龄

摘要: 1 create or replace function F_GETAGE(dateofbirth date) return varchar2 2 is 3 begin 4 if((SYSDATE-dateofbirth)>=365) then 5 return trun... 阅读全文

posted @ 2015-10-21 15:55 ..小树苗 阅读(862) 评论(0) 推荐(0) 编辑

2015年10月18日

java类中获取WEB-INF路径

摘要:  http://blog.csdn.net/fancylovejava/article/details/7577294 阅读全文

posted @ 2015-10-18 12:34 ..小树苗 阅读(2458) 评论(0) 推荐(0) 编辑

IE设置信任站点和安全级别(bat文件)

摘要: reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Ranges\Range1" /v ":Range" /t REG_SZ /d 192.168.11.22 /freg add "HKC 阅读全文

posted @ 2015-10-18 12:20 ..小树苗 阅读(3394) 评论(0) 推荐(0) 编辑

上一页 1 ··· 8 9 10 11 12

导航