自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 资源 (1)
  • 收藏
  • 关注

转载 DES加密解密

public class DESUtils { public static String decrypt(String paramString) { String[] arrayOfString = decode(paramString); DESEncrypt localDESEncrypt = new DESEncrypt(arrayOfString[0]); paramStr

2016-12-01 18:58:07 259

原创 VIEW

--创建 CREATE OR REPLACE VIEW vw_name AS  (select * from tableName -- 只能编写查询语句); --使用 select * from vw_name ;

2016-12-01 18:52:15 187

原创 存储过程

create or replace procedure proc_name(传入参数 类型) IS    --游标用到的参数   v_b  varchar2(30);   v_c    varchar2(30);      -- 定义游标   cursor s_cursor_i is     select id, name        from tableName

2016-12-01 18:37:48 183

原创 job

-- job 创建 declare  test_job_really number; begin   sys.dbms_job.submit(job => test_job_really,                       what => '存储过程名(传入参数(实际情况));',                       next_date => to_date('30-

2016-12-01 17:50:38 200

原创 Trigger

create or replace trigger   trg_name   after insert or update on  table_One      --在新增这张表后   for each row begin   --新增就新增   if :new.table_One的新增参数(sex)= '女' then     insert into table_Two

2016-12-01 17:46:07 225

原创 oracle 基础

-- Create table create table tableName (   id  NUMBER(20),   name  VARCHAR2(100), ); -- Add comments to the table  comment on table  tableName   is '表名'; -- Add comments to the columns  co

2016-12-01 16:16:07 259

转载 函数

--创建函数 create or replace function 函数名( 传入参数...   类型 ) return 类型 is    v_name  number; --定义个变量  begin    select count(1)       into v_name       from   table_name ts     where 传入参数  =  ts.goods_

2016-12-01 14:50:11 312

简历jiangf

项目三RMS风险管理系统开发人数2人项目角色开发人员项目周期-06至-个月软件环境jdk16Windows7oracle10gJBOSS开发工具MyEclipseSVNJUnit4开发技术Struts

2016-12-27

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除