• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

what is JDBC???

 
Ranch Hand
Posts: 40
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
the topic says it all!
 
Ranch Hand
Posts: 53
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Frank,
The short answer is that JDBC is a JAVA API allowing Java developers a standard way of connecting to and interacting with databases through their Java applications.
It includes ways to get (and release) database connections, perform queries and transactions. You can get to the documentation on JDBC at: http://www.javasoft.com/products/jdbc/index.html
Good luck,
Bill
 
Ranch Hand
Posts: 51
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
me again,
JDBC is a take off on ODBC. I'll assume no knowey ODBC.
ODBC is a 'standard' to allow people to access 'other' databases.
I, oops, Apu thinks ODBC = Open Database Connectivity.
Hum, Apu wonders what the "J" could stand for...........
 
Ranch Hand
Posts: 18944
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You are quite wrong (officially).
Sun/Javasoft has always denied that JDBC is short for anything (and J*** Database Connectivity in particular).
That this claim is bogus is probably correct, but it is the official position of the creators...

Originally posted by Apu Nahasapeemapetilon:
me again,
JDBC is a take off on ODBC. I'll assume no knowey ODBC.
ODBC is a 'standard' to allow people to access 'other' databases.
I, oops, Apu thinks ODBC = Open Database Connectivity.
Hum, Apu wonders what the "J" could stand for...........


 
mister krabs
Posts: 13974
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
JDBC is not a take-off on ODBC. JDBC is an abstracted layer made up of interfaces that allow DBMS vendors and others to provide standard classes and methods to interact with databases. JDBC abstracts the vendor-specific details and generalizes the common database access functions. JDBC by itself can not provide access to any database as it is simply an abstraction. Sun provides the JDBC-ODBC bridge with the JSDK as an implementation of JDBC.
 
What could go wrong in a swell place like "The Evil Eye"? Or with this tiny ad?
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic