Showing posts from July, 2015

DBMS using connections(Client-Data sever, two tier) Oracle/MySQL (ODBC/JDBC), SQL prompt to create data base tables insert, update data values, delete table, use table, select queries with/without where clause. ,demonstrate use of stored procedure / function (create procedure at the data side and make use of it on the client side)

import java.sql.*; import java.util.*; public class JDBC { static String insert(){ Scanner s = new Scanner(System.in); int book_id; String book_name = null, book_author = null, book_publ=null; …

Load More
That is All