Database Integration Java Tutorials

Java is two-dimensional: It's a programming language and also a client/server system in which programs are automatically downloaded and run on the local machine. Java includes Java compilers, interpreters, tools, libraries, and integrated development environments (IDEs). Javasoft is leading the way in the development of libraries to extend the functionality and usability of Java as a serious platform for creating applications. One of these libraries, called Application Programming Interfaces (APIs), is the Java Database Connectivity API, or JDBC. Its primary purpose is to intimately tie connectivity between the Java programming language and a wide range of databases – SQL databases and other tabular data sources, such as spreadsheets or flat files.
Home » Java » Database Integration (29 Tutorials)
JDBC Update
JDBC Update tutorial
We can use java jdbc update statements in a java program to update the data for a Table.
JDBC Tutorial Insert
JDBC Tutorial Insert tutorial
Inserting Data into SQL Tables. We will insert data into the tables Employees and Orders as created in the previous tutorial, one row at a time, supplying the information to be stored in each column of that row using a jdbc insert query statement.
JDBC Result Sets
JDBC Result Sets tutorial
The rows that satisfy a particular query are called the result set. The number of rows returned in a result set can be zero or more. A user can access the data in a result set using a cursor one row at a time from top to bottom.
JDBC Driver Types
JDBC Driver Types tutorial
In this tutorial you will find out JDBC Driver Types.
Working With Android Contacts
Working With Android Contacts tutorial
Tutorial covers querying the Android contact database in both Android 2.0 and 1.x flavors. Learn to retrieve contact details and build a series of classes to manage contact data on both Android SDK level 3 and level 5 platforms.
Prepared Statements
Prepared Statements tutorial
Java JDBC Prepared statements are pre-compiled SQL statements. Precompiled SQL is useful if the same SQL is to be executed repeatedly, for example, in a loop.
Use Hibernate to implement mapping from Java type to SQL type
Use Hibernate to implement mapping from Java type to SQL type tutorial
Through this tutorial, developers will be able to see how Hibernate provides built-in types that map to SQL database types. Readers will also be shown how Hibernate allows them to implement and use custom types when these built-in types do not satisfy the application's requirements, or when they want to change the default behavior of a built-in type. Developers will also learn to implement a custom-type class and then use it in the same way as a built-in one. (pdf file, install Acrobat Reader to read this tutorial)
JDBC Create Table
JDBC Create Table tutorial
Tables are composed of rows and columns. Each row represents a record in the database. Columns are also known as fields, or attributes.
JDBC Select Statement Example
JDBC Select Statement Example tutorial
We can use Java JDBC Select statement in a java program to retrieve the data and display it for the respective Tables. JDBC returns results in a ResultSet object, so we need to declare an instance of the class ResultSet to hold our results.
Hibernate Mapping Component using Annotations
Hibernate Mapping Component using Annotations tutorial
Component mapping using hibernate annotations.
Hibernate Mapping Many-to-Many using Annotations
Hibernate Mapping Many-to-Many using Annotations tutorial
Learn how to do many-to-many mapping using hibernate annotations.
Hibernate Mapping One-to-Many using Annotations
Hibernate Mapping One-to-Many using Annotations tutorial
See how to do one-to-many mapping using hibernate annotations.
Hibernate Mapping One-to-One using Annotations
Hibernate Mapping One-to-One using Annotations tutorial
Learn how to do one-to-one mapping using hibernate annotations.
Hibernate Mapping Many-to-One using Annotations
Hibernate Mapping Many-to-One using Annotations tutorial
Find out how to to do many-to-one mapping using hibernate annotations.
Hibernate Mapping Component
Hibernate Mapping Component tutorial
Find out how to do component mapping using hibernate.
Hibernate Mapping One-to-Many Tutorial
Hibernate Mapping One-to-Many Tutorial tutorial
How to do one-to-many mapping using hibernate.
Hibernate Mapping One-to-One
Hibernate Mapping One-to-One tutorial
Learn how to do one-to-one mapping using hibernate.
Hibernate Mapping Many-to-One
Hibernate Mapping Many-to-One tutorial
Learn how to do many-to-one mapping using hibernate. 
Hibernate Annotations Tutorial
Hibernate Annotations Tutorial tutorial
Learn how to create a simple example using the Hibernate Annotations.
Hibernate Mapping Tutorial
Hibernate Mapping Tutorial tutorial
In this tutorial you will learn how to do many-to-many mapping in hibernate.
Home » Java » Database Integration (29 Tutorials)
 
Subcategories
 
Categories
 
Advertisement