SlideShare a Scribd company logo
1 of 9
Prepared by-
Paneliya Prince (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

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)Som Prakash Rai
ย 
Fundamentals of JDBC
Fundamentals of JDBCFundamentals of JDBC
Fundamentals of JDBCJainul Musani
ย 
Chap3 3 12
Chap3 3 12Chap3 3 12
Chap3 3 12Hemo Chella
ย 
10 J D B C
10  J D B C10  J D B C
10 J D B Cguest04b824
ย 
Module4_Annotations_JDBC.pdf
Module4_Annotations_JDBC.pdfModule4_Annotations_JDBC.pdf
Module4_Annotations_JDBC.pdfRoopeshGT
ย 
Jdbc session01
Jdbc session01Jdbc session01
Jdbc session01Niit Care
ย 
JDBC with MySQL.pdf
JDBC with MySQL.pdfJDBC with MySQL.pdf
JDBC with MySQL.pdfArumugam90
ย 
JDBC with MySQL.pdf
JDBC with MySQL.pdfJDBC with MySQL.pdf
JDBC with MySQL.pdfArumugam90
ย 
Java database connectivity with MySql
Java database connectivity with MySqlJava database connectivity with MySql
Java database connectivity with MySqlDhyey Dattani
ย 
Java database connectivity with MySql
Java database connectivity with MySqlJava database connectivity with MySql
Java database connectivity with MySqlDhyey Dattani
ย 
creating jdbc connection
creating jdbc connectioncreating jdbc connection
creating jdbc connectionPaneliya Prince
ย 
creating jdbc connection
creating jdbc connectioncreating jdbc connection
creating jdbc connectionPaneliya Prince
ย 
Java session16
Java session16Java session16
Java session16Niit Care
ย 
Jdbc connectivity
Jdbc connectivityJdbc connectivity
Jdbc connectivityarikazukito
ย 
Java Database Connectivity
Java Database ConnectivityJava Database Connectivity
Java Database Connectivitybackdoor
ย 

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
ย 
Jdbc ppt
Jdbc pptJdbc ppt
Jdbc ppt
ย 
10 J D B C
10  J D B C10  J D B C
10 J D B C
ย 
Module4_Annotations_JDBC.pdf
Module4_Annotations_JDBC.pdfModule4_Annotations_JDBC.pdf
Module4_Annotations_JDBC.pdf
ย 
Jdbc
JdbcJdbc
Jdbc
ย 
Assignment#10
Assignment#10Assignment#10
Assignment#10
ย 
Jdbc session01
Jdbc session01Jdbc session01
Jdbc session01
ย 
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
ย 
Java Database Connectivity
Java Database ConnectivityJava Database Connectivity
Java Database Connectivity
ย 

More from Paneliya Prince

140120107044 ins ala.ppt
140120107044 ins ala.ppt140120107044 ins ala.ppt
140120107044 ins ala.pptPaneliya Prince
ย 
To create a web service
To create a web serviceTo create a web service
To create a web servicePaneliya Prince
ย 
Session and state management
Session and state managementSession and state management
Session and state managementPaneliya Prince
ย 
Managing states
Managing statesManaging states
Managing statesPaneliya Prince
ย 
Introduction to ado.net
Introduction to ado.netIntroduction to ado.net
Introduction to ado.netPaneliya Prince
ย 
Grid view control
Grid view controlGrid view control
Grid view controlPaneliya Prince
ย 
Asp.net validation
Asp.net validationAsp.net validation
Asp.net validationPaneliya Prince
ย 
Asp.net control
Asp.net controlAsp.net control
Asp.net controlPaneliya Prince
ย 
Wt oep visiting card
Wt oep visiting cardWt oep visiting card
Wt oep visiting cardPaneliya Prince
ย 
SE OEP online car service booking
SE OEP online car service bookingSE OEP online car service booking
SE OEP online car service bookingPaneliya Prince
ย 
processing control input
processing control inputprocessing control input
processing control inputPaneliya Prince
ย 
static dictionary technique
static dictionary techniquestatic dictionary technique
static dictionary techniquePaneliya Prince
ย 
Ajava oep shopping application
Ajava oep shopping applicationAjava oep shopping application
Ajava oep shopping applicationPaneliya Prince
ย 
static dictionary
static dictionarystatic dictionary
static dictionaryPaneliya Prince
ย 
ADO.net control
ADO.net controlADO.net control
ADO.net controlPaneliya Prince
ย 
web technology
 web technology web technology
web technologyPaneliya Prince
ย 

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
ย 
DCDR
DCDRDCDR
DCDR
ย 
static dictionary
static dictionarystatic dictionary
static dictionary
ย 
ADO.net control
ADO.net controlADO.net control
ADO.net control
ย 
web technology
 web technology web technology
web technology
ย 

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.pdfankushspencer015
ย 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
ย 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfJiananWang21
ย 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...tanu pandey
ย 
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELLPVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELLManishPatel169454
ย 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...Call Girls in Nagpur High Profile
ย 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdfKamal Acharya
ย 
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 engineeringmulugeta48
ย 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
ย 
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...ranjana rawat
ย 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordAsst.prof M.Gokilavani
ย 
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdfSuman Jyoti
ย 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . pptDineshKumar4165
ย 
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)simmis5
ย 
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.pptMsecMca
ย 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
ย 
NFPA 5000 2024 standard .
NFPA 5000 2024 standard                                  .NFPA 5000 2024 standard                                  .
NFPA 5000 2024 standard .DerechoLaboralIndivi
ย 

Recently uploaded (20)

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
ย 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
ย 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
ย 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
ย 
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELLPVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
ย 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
ย 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
ย 
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
ย 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
ย 
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...
ย 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
ย 
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
ย 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
ย 
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)
ย 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
ย 
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
ย 
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
ย 
(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
ย 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
ย 
NFPA 5000 2024 standard .
NFPA 5000 2024 standard                                  .NFPA 5000 2024 standard                                  .
NFPA 5000 2024 standard .
ย 

creating jdbc connection

  • 1. Prepared by- Paneliya Prince (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