我正在学习Apex,当我通过一些教程时我很有动力,但是当我尝试创建我的第一个普通表格时,它就崩溃了,并且不会谷歌任何有用的东西。
我尝试使用表格模板创建一个页面,以获得前端来访问我的新表格,但我一直在
ORA-01400: cannot insert NULL into
("APEX_050100"."WWV_FLOW_MENU_OPTIONS"."SHORT_NAME")
非常感谢任何见解。
谢谢你, 拉狄克
CREATE TABLE RRDefinitions
( definition_id NUMBER NOT NULL,
definition_description VARCHAR(45) NOT NULL,
CONSTRAINT pk_definition_id PRIMARY KEY (definition_id)
);
CREATE SEQUENCE definition_id_seq START WITH 100;
CREATE OR REPLACE trigger BI_RRDefinitions
before insert on RRDefinitions
for each row
begin
if :NEW.definition_id is null then
select definition_id_SEQ.nextval into :NEW.definition_id from dual;
end if;
end;
答案 0 :(得分:0)
不知道发生了什么但是使用我的手机和Firefox,我能够创建一个页面。只要我不使用面包屑并且如果我不创建菜单项条目,PC就会不时地工作。我的结论是我的环境要么旧,过时或搞砸都会从头开始重新安装。谢谢你的帮助