The javafx,scene.layout.HBox class arranges its child nodes in a single horizontal row.
Category: Java
JavaFX 2.1 Layouts: javafx.scene.layout.VBox
The javafx.scene.layout.VBox class arranges it child nodes in a single vertical column.
JavaFX 2.1 Layouts: javafx.scene.layout.BorderPane
The javafx.scene.layout.BorderPane class splits the plane into five regions: top, bottom, right, left and center. Each region can contain child nodes or other layouts.
JavaFX 2.1 Layouts: javafx.scene.layout.Pane
The class javafx.scene.layout.Pane is the base class for the layout panes. This class provides no formatting of the child nodes beyond resizing resizable child nodes. This post will look at the javafx.scene.layout.Pane class.
Introduction to Fetching Data from an Oracle Database using Java and JDBC part 2
In this three part series of posts we will look at fetching data from an Oracle Database using Java and JDBC. In this second post we look at the PreparedStatement interface and how to process […]
Introduction to Fetching Data from an Oracle Database using Java and JDBC part 1
In this three part series of posts we will look at fetching data from an Oracle Database using Java and JDBC. In this first post we look at the basics of the Statement interface and […]
Connect to an Oracle TimesTen In-Memory Database using Java and JDBC
This document will detail establishing a connection to an Oracle TimesTen In-Memory Database using Java and JDBC.
java.sql.SQLException: Problems with loading native library/missing methods: no ttJdbc1121 in java.library.path
When trying to execute a Java program that connects to remote Oracle TimesTen database you receive the following stack trace.
Adding Java Libraries to Oracle JDeveloper 11g R1
Oracle JDeveloper includes a rich set of Java libraries for developing Java applications. However you will find that you will need to add libraries that are not included or you may want to try updated […]
Adding the Oracle JDBC Drivers to a JDeveloper 11gR1 Project
Nearly all of the Java examples presented on Oracle Distilled are developed and tested in Oracle JDeveloper with the exception of those documents targeting Netbeans. This document will detail how to add the Oracle JDBC […]
Connect to an Oracle Database using Java and JDBC
This document will detail establishing a connection to an Oracle Database using Java and JDBC. Errors that could arise in making JDBC connections will be examined at the end of the document.
Determine JDBC Driver Version
You may be required to determine the version of a JDBC driver used to connect to your Oracle Database. In cases were the JDBC driver used is the one included with Oracle Client or Database […]
Database Startup and Shutdown through JDBC
Starting in 11gR1 you have the ability to stop and start the database through a JDBC connection.