SlideShare a Scribd company logo
1 of 9
Prepared by-
Prince Paneliya (150120116047)
Guided by โ€“ Prof.Prashant Jani
Gandhinagar Institute of Technology
SUBJECT-AJAVA(2160707)
Creating JDBC connection
2
โ€ข JDBC: Java Database Connectivity kit
โ€ข Package: java.sql
โ€ข DriverManager: class for making connection to
databases
โ€ข Connection: interface for communicating with databases
once connection has been established.
โ€ข Other interfaces: Statement, ResultSet,
DatabaseMetaData, ResultSetMetaData,
SQLException, โ€ฆ.etc.
3
Connecting to Databases with JDBC
โ€ข JDBC-to-database communication path
Will discuss this path
using testdb.mdb
Textbook discusses this
path using testdb.mdb
Java Application
JDBC Driver Manager
JDBC/ODBC
bridge
Vendor
supplied
JDBC
driversODBC drivers
Database
4
โ€ข Register testdb.mdb with the ODBC Datasource Administer
on your PC. Instructions:
โ€“ Open Control Panel and select ODBC Data Sources
[32bit] (on XP under Administrative Tools). You will
get the window shown on the right. Click on Add.
5
โ€“ Select Microsoft Access Driver and then click on Finish.
You will get the window shown on the right.
โ€“ Provide a name for the data source, say TestDB.
โ€“ Click and Select and select testdb.mdb from file system
(picture on the next page)
6
โ€“ Then you see the picture on the right. Simply click on OK
and the registration is complete.
โ€“ Thereafter the database testdb.mdb is known as TestDB
to the ODBC Datasource Adminstrator.
โ€“ For JDBC, URL for the database is: jdbc:odbc:TestDB
7
โ€ข Register JDBC driver (sun.jdbc.odbc.JdbcOdbcDriver )
with DriverManager
โ€“ Method 1:
โ€ข set system property jdbc.drivers
System.setProperty("jdbc.drivers",
"sun.jdbc.odbc.JdbcOdbcDriver");
โ€ข At initialization, DriverManager loads all driver
classes referenced in jdbc.drivers
โ€“ Method 2: Load driver explicitely at any time
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
A call to forName("X") causes the class named X
to be initialized.
Java Application
JDBC Driver Manager
JDBC/ODBC
bridge
Vendor
supplied
JDBC
drivers
ODBC
Database
8
โ€ข Connection examples
โ€“ ConnectMe.java: register JDBC driver using the second
method
โ€“ ConnectMe1.java: register JDBC driver using the first
method
โ€ข Note. Examples (including testdb.mdb) in this topic are
packaged in the zip. See the code page
THANK YOU
9

More Related Content

Similar to creating JDBC connection

10 J D B C
10  J D B C10  J D B C
10 J D B C
guest04b824
ย 
Jdbc session01
Jdbc session01Jdbc session01
Jdbc session01
Niit Care
ย 
JDBC with MySQL.pdf
JDBC with MySQL.pdfJDBC with MySQL.pdf
JDBC with MySQL.pdf
Arumugam90
ย 
creating jdbc connection
creating jdbc connectioncreating jdbc connection
creating jdbc connection
Paneliya Prince
ย 
creating jdbc connection
creating jdbc connectioncreating jdbc connection
creating jdbc connection
Paneliya Prince
ย 
Java session16
Java session16Java session16
Java session16
Niit Care
ย 
Jdbc connectivity
Jdbc connectivityJdbc connectivity
Jdbc connectivity
arikazukito
ย 

Similar to creating JDBC connection (20)

Jdbc Complete Notes by Java Training Center (Som Sir)
Jdbc Complete Notes by Java Training Center (Som Sir)Jdbc Complete Notes by Java Training Center (Som Sir)
Jdbc Complete Notes by Java Training Center (Som Sir)
ย 
Fundamentals of JDBC
Fundamentals of JDBCFundamentals of JDBC
Fundamentals of JDBC
ย 
JDBC
JDBCJDBC
JDBC
ย 
Chap3 3 12
Chap3 3 12Chap3 3 12
Chap3 3 12
ย 
10 J D B C
10  J D B C10  J D B C
10 J D B C
ย 
Jdbc ppt
Jdbc pptJdbc ppt
Jdbc ppt
ย 
Module4_Annotations_JDBC.pdf
Module4_Annotations_JDBC.pdfModule4_Annotations_JDBC.pdf
Module4_Annotations_JDBC.pdf
ย 
Assignment#10
Assignment#10Assignment#10
Assignment#10
ย 
Jdbc session01
Jdbc session01Jdbc session01
Jdbc session01
ย 
Jdbc
JdbcJdbc
Jdbc
ย 
Jdbc new
Jdbc newJdbc new
Jdbc new
ย 
JDBC with MySQL.pdf
JDBC with MySQL.pdfJDBC with MySQL.pdf
JDBC with MySQL.pdf
ย 
JDBC with MySQL.pdf
JDBC with MySQL.pdfJDBC with MySQL.pdf
JDBC with MySQL.pdf
ย 
Java database connectivity with MySql
Java database connectivity with MySqlJava database connectivity with MySql
Java database connectivity with MySql
ย 
Java database connectivity with MySql
Java database connectivity with MySqlJava database connectivity with MySql
Java database connectivity with MySql
ย 
creating jdbc connection
creating jdbc connectioncreating jdbc connection
creating jdbc connection
ย 
creating jdbc connection
creating jdbc connectioncreating jdbc connection
creating jdbc connection
ย 
Java session16
Java session16Java session16
Java session16
ย 
Jdbc connectivity
Jdbc connectivityJdbc connectivity
Jdbc connectivity
ย 
JDBC.ppt
JDBC.pptJDBC.ppt
JDBC.ppt
ย 

More from Paneliya Prince (20)

140120107044 ins ala.ppt
140120107044 ins ala.ppt140120107044 ins ala.ppt
140120107044 ins ala.ppt
ย 
To create a web service
To create a web serviceTo create a web service
To create a web service
ย 
Session and state management
Session and state managementSession and state management
Session and state management
ย 
Master pages
Master pagesMaster pages
Master pages
ย 
Master page
Master pageMaster page
Master page
ย 
Managing states
Managing statesManaging states
Managing states
ย 
Introduction to ado.net
Introduction to ado.netIntroduction to ado.net
Introduction to ado.net
ย 
Grid view control
Grid view controlGrid view control
Grid view control
ย 
Asp.net validation
Asp.net validationAsp.net validation
Asp.net validation
ย 
Asp.net control
Asp.net controlAsp.net control
Asp.net control
ย 
Wt oep visiting card
Wt oep visiting cardWt oep visiting card
Wt oep visiting card
ย 
SE OEP online car service booking
SE OEP online car service bookingSE OEP online car service booking
SE OEP online car service booking
ย 
processing control input
processing control inputprocessing control input
processing control input
ย 
static dictionary technique
static dictionary techniquestatic dictionary technique
static dictionary technique
ย 
Ajava oep
Ajava oep Ajava oep
Ajava oep
ย 
Ajava oep shopping application
Ajava oep shopping applicationAjava oep shopping application
Ajava oep shopping application
ย 
creating jdbc connection
creating jdbc connectioncreating jdbc connection
creating jdbc connection
ย 
DCDR
DCDRDCDR
DCDR
ย 
static dictionary
static dictionarystatic dictionary
static dictionary
ย 
ADO.net control
ADO.net controlADO.net control
ADO.net control
ย 

Recently uploaded

AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
ankushspencer015
ย 
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night StandCall Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
amitlee9823
ย 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
MsecMca
ย 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Christo Ananth
ย 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
ย 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
SUHANI PANDEY
ย 
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort ServiceCall Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
ย 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
ย 

Recently uploaded (20)

The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
ย 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
ย 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)
ย 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineering
ย 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
ย 
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night StandCall Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
ย 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
ย 
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
ย 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
ย 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
ย 
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
ย 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
ย 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
ย 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
ย 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
ย 
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort ServiceCall Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Ramesh Nagar Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
ย 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
ย 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdf
ย 
Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...
ย 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
ย 

creating JDBC connection

  • 1. Prepared by- Prince Paneliya (150120116047) Guided by โ€“ Prof.Prashant Jani Gandhinagar Institute of Technology SUBJECT-AJAVA(2160707) Creating JDBC connection
  • 2. 2 โ€ข JDBC: Java Database Connectivity kit โ€ข Package: java.sql โ€ข DriverManager: class for making connection to databases โ€ข Connection: interface for communicating with databases once connection has been established. โ€ข Other interfaces: Statement, ResultSet, DatabaseMetaData, ResultSetMetaData, SQLException, โ€ฆ.etc.
  • 3. 3 Connecting to Databases with JDBC โ€ข JDBC-to-database communication path Will discuss this path using testdb.mdb Textbook discusses this path using testdb.mdb Java Application JDBC Driver Manager JDBC/ODBC bridge Vendor supplied JDBC driversODBC drivers Database
  • 4. 4 โ€ข Register testdb.mdb with the ODBC Datasource Administer on your PC. Instructions: โ€“ Open Control Panel and select ODBC Data Sources [32bit] (on XP under Administrative Tools). You will get the window shown on the right. Click on Add.
  • 5. 5 โ€“ Select Microsoft Access Driver and then click on Finish. You will get the window shown on the right. โ€“ Provide a name for the data source, say TestDB. โ€“ Click and Select and select testdb.mdb from file system (picture on the next page)
  • 6. 6 โ€“ Then you see the picture on the right. Simply click on OK and the registration is complete. โ€“ Thereafter the database testdb.mdb is known as TestDB to the ODBC Datasource Adminstrator. โ€“ For JDBC, URL for the database is: jdbc:odbc:TestDB
  • 7. 7 โ€ข Register JDBC driver (sun.jdbc.odbc.JdbcOdbcDriver ) with DriverManager โ€“ Method 1: โ€ข set system property jdbc.drivers System.setProperty("jdbc.drivers", "sun.jdbc.odbc.JdbcOdbcDriver"); โ€ข At initialization, DriverManager loads all driver classes referenced in jdbc.drivers โ€“ Method 2: Load driver explicitely at any time Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); A call to forName("X") causes the class named X to be initialized. Java Application JDBC Driver Manager JDBC/ODBC bridge Vendor supplied JDBC drivers ODBC Database
  • 8. 8 โ€ข Connection examples โ€“ ConnectMe.java: register JDBC driver using the second method โ€“ ConnectMe1.java: register JDBC driver using the first method โ€ข Note. Examples (including testdb.mdb) in this topic are packaged in the zip. See the code page