Using MyGeneration, doodads, and Oracle XE, is it possible to implement an "auto number primary key"
- by Michael Rosario
Hello world.
Using MyGeneration, doodads, and Oracle XE, is it possible to implement an "auto number primary key" scheme?
Problem facts:
I am using Oracle XE. I have implemented the following table and trigger:
CREATE TABLE "USERS"
( "ID" NUMBER(38,0),
"USER_NAME" VARCHAR2(50),
"PASSWORD" VARCHAR2(50),
"EMAIL"…