JDBC basic example For Select Query For explanation watch video: For Creating Table:: SQL> create table emp60(srno int,fname varchar2(10)); Table created. SQL> desc emp60; Name Null? Type ----------------------------------------- -------- ---------------------------- SRNO NUMBER(38) FNAME VARCHAR2(10) SQL> insert into emp60 values(1,'allu'); 1 row created. SQL> insert into emp60 values(2,'vijay'); 1 row created. SQL> insert into emp60 values(3,'rajni'); 1 row created. SQL...
Comments
Post a Comment