Executing SQL from Apache Derby
Execute SQL statements If connection is established properly with the Apache Derby, you can now execute simple sequel statements from your command prompt ij tool as shown below Creating tables using ij tool ij> create table table_name(roll_no int, first_name varchar(10), last_name varchar(10)); Inserting values into the table ij> insert into table_name values (197878,’jack’,'Samurai’); ij> insert into table_name values (197823,’Corsa’,'Neo’); ij> insert ...