JDBC

JDBC Introduction – Java database connectivity

Lets start with introductory portion. Jdbc Java database connectivity is used to connect Java application with database. jdbc is an API used to communicate Java application two database in database Independent and platform independent manner. it provides classes any two faces to connect or communicate Java application which database. jdbc is the standard method accessing […]

JDBC API

What is an API? Application Program interface A set of routines, protocols and tools for building software applications. JDBC is an API Which is used in java programming for interacting with database. JDBC API Allows java programs to Make a connection with Database Creating SQL statements Execute SQL Statements Process and Send the resulting Records

JDBC Connectivity Model – Architecture

JDBC Connectivity Model JDBC Architecture Java Application A java programs that runs stand alone in a client or server. JDBC API It Provides classes and interfaces to connect or communicate java application with database. JDBC Driver Manager This class manages lists of database drivers. It ensures that correct driver is used to access each data […]