| 
    Slide 14.22: JDBC (Java DataBase Connectivity) Slide 14.24: A typical JDBC API usage sequence Home  | 
  
    
   | 
 
FIRST_NAME, LAST_NAME) from the EMPLOYEES table, which is partially defined as
   CREATE TABLE employees (
     employee_id   NUMBER(6)  PRIMARY KEY, 
     first_name    VARCHAR2(20),
     last_name     VARCHAR2(25)  NOT NULL,
     email         VARCHAR2(25)  NOT NULL,
     phone_number  VARCHAR2(20) ) ;
This definition can be found at
/home/Agassiz/project/oracle/OraHome1/demo/schema/human_resources
   
  |