首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Exception >

exception setting property value with CGLIB 问题

2014-01-26 
表间关系如下:-- Create tablecreate table T_TOPIC_APPLIED(BOOTHS INTEGER,SPACE NUMBER(5,1),TOPICID NU

表间关系如下:
  -- Create table
  create table T_TOPIC_APPLIED
  (
  BOOTHS INTEGER,
  SPACE NUMBER(5,1),
  TOPICID NUMBER(10) not null,
  TOPICAPPLIEDID NUMBER(10) not null,
  USERID NUMBER(10) not null,
  EXPOID NUMBER(10) not null
  )
  tablespace EXPO
  pctfree 10
  initrans 1
  maxtrans 255
  storage
  (
  initial 64K
  minextents 1
  maxextents unlimited
  );
  -- Create/Recreate primary, unique and foreign key constraints
  alter table T_TOPIC_APPLIED
  add primary key (TOPICAPPLIEDID)
  using index
  tablespace EXPO
  pctfree 10
  initrans 2
  maxtrans 255
  storage
  (
  initial 64K
  minextents 1
  maxextents unlimited
  );
  alter table T_TOPIC_APPLIED
  add constraint FK_TOPIC_APPLIED_1 foreign key (EXPOID)
  references T_EXPO (EXPOID) on delete cascade;
  alter table T_TOPIC_APPLIED
  add foreign key (TOPICID)
  references T_EXPO_TOPIC (TOPICID) on delete cascade;
  alter table T_TOPIC_APPLIED
  add foreign key (USERID)
  references T_USER (USERID) on delete cascade;
 
 
  -- Create table
  create table T_TOPIC_ITEM_APPLIED
  (
  ITEMAPPLIEDID NUMBER(10) not null,
  ITEMID NUMBER(10) not null,
  TOPICAPPLIEDID NUMBER(10) not null
  )
  tablespace EXPO
  pctfree 10
  initrans 1
  maxtrans 255
  storage
  (
  initial 64K
  minextents 1
  maxextents unlimited
  );
  -- Create/Recreate primary, unique and foreign key constraints
  alter table T_TOPIC_ITEM_APPLIED
  add primary key (ITEMAPPLIEDID)
  using index
  tablespace EXPO
  pctfree 10
  initrans 2
  maxtrans 255
  storage
  (
  initial 64K
  minextents 1         

热点排行