Posts

Showing posts from October, 2017

Java DataBase Connectivity JDBC

java database connectivity jdbc Test data from database/validate database Mysql.-Installation: Database connectivity with java:- **driver(jars) to connect different DB ---Install the MYSQL-->start the services of Mysql---> cmd -->path of mysql BIN -->mysql -u root(to connect using user id 'root') create a database: create database sudheer; show databases; create table; inserted data into table; ----------------------------------------------- add mysql jar to ecllipse: Java code: Connetion (interface)->it helps to connect to the DB     Connection conn = null;                 String url="jdbc:mysql://localhost:3306/";(path of mysql)         String driver="com.mysql.jdbc.driver";         String dbName="sudheer";[connecting to DB]         String Username="root";         String passwor...