JDBC (Java Data Base Connectivity)
JDBC (Java Data Base Connectivity) is an API (Application Programming Interface) for connecting to databases from the Java environment.
JDBC is an alternative to ODBC. JDBC's Java interface is more comfortable to Java programmers than ODBC's C language interface.
JDBC is included with both J2SE and J2EE.
If no JDBC driver is available for your needs, a JDBC-ODBC bridge may be used to connect to an ODBC driver via the JDBC API. Java 2 includes a JDBC-ODBC bridge for Solaris and Microsoft Windows.
- ODBC (Open Database Connectivity)
ODBC (Open Data Base Connectivity) is an interface to access databases via SQL queries. ODBC can be used as an access tool to various databases such as MS-Access, dBase, DB2, Excel, and Text. Through these Call Level Interface (CLI) specifications of the SQL Access Group, the OBDC allows a neutral way of accessing the data [...]...
- J2EE
J2EE is Java 2 Enterprise Edition. J2EE is Sun’s preferred Java platform for multi-tier enterprise applications. J2EE enhances J2SE with: Enterprise JavaBeans components Java Servlets API JavaServer Pages XML For more information on J2EE, visit J2EE....
- JDK (Java Development Kit)
The JDK is the Java Development Kit. The JDK consists of the Java compiler and related tools which enable users to create applications in Java. Sun distributes the JDK as part of J2EE, J2SE, and J2ME. Java Video Tutorial 1: Installing the Java Development Kit This tutorial is the first of a collection of basic [...]...
- JRE (Java Runtime Environment)
The JRE is the Java Runtime Environment. The JRE consists of the Java Virtual Machine, the Java libraries, and all other components necessary to run Java applications and applets. Sun distributes the JRE seperately, or as part of J2EE, J2SE, and J2ME. ...
- Java Data Types
Java has two groups of data types, primitive data types and object references. Java Primitive Data Types Data Type Purpose Contents Default Value* boolean Truth value true or false fales char Character Unicode characters u0000 byte Signed integer 8 bit two’s complement (byte) 0 short Signed integer 16 bit two’s complement (short) 0 int Signed [...]...




