5.3.2.2.7  Distribute the Application to Other Users Now that you have verified that the application works outside of the IDE, you are ready to distribute the application and allow other users to use it. To distribute the application, perform the following operations: 1) On your system, create a zip file that contains the application JAR file (SumApp.jar) and the accompanying lib folder that contains SumLib.jar.2) Send the file to the people who will use the application. Instruct them to unpack the zip file, making sure that the SumApp.jar file and the lib folder are in the same folder.3) Instruct the users to follow the stepsRead More →

5.3.2.4   Build a Free-Form Java Project There are also project templates available for free-form Java projects. In so-called free-form proj-ects, the NetBeans IDE uses targets in an existing Ant script to build, run, clean, test and debug your application. If the Ant script does not contain targets for some of these functions, the functions are unavailable for the project. To implement these functions, you write targets either in your Ant script or in a secondary Ant script. In general, it is better to use standard With Existing Sources project templates for import-ing projects. For Eclipse projects, it is best to use the Import Project feature,Read More →

5.5   CHAPTER SUMMARY Basic and fundamental knowledge about and implementations of the Apache NetBeans IDE 12 are discussed and presented, with some real example projects, in this chapter. The components and architecture of the Apache NetBeans IDE 12 are introduced and analyzed in detail at the begin-ning of this chapter. Following an overview of Apache NetBeans IDE 12, a detailed discussion and introduction of the Apache NetBeans IDE 12 platform is given. A detailed introduction to and illus-tration of how to download and install the Apache NetBeans IDE 12 are provided in this chapter. Most popular technologies and applications supported by the Apache NetBeans IDERead More →

4) Click on the drop-down arrow from the Driver box and select the Oracle Thin item from the Driver list.5) Click on the Add button to scan and browse to the folder under which our new downloaded Oracle JDBC driver, ojdbc8.jar, is located (C:\Temp); select that driver file; and click on the Open button to add this driver to our driver list. Your finished New Connection Wizard should match the one in Figure 6.2.6) Click on the Next button to open the Customize Connection sub-wizard, as shown in Figure 6.3.7) Enter the following parameters into the associated boxes as the connection elements: a. Enter localhostRead More →

6.1  INTRODUCTION TO RUNTIME OBJECT METHOD The Java runtime object method is to develop and build database-accessing operations using run-time Java code without touching JPA Wizards and Entity classes. In other words, no object-to-relational database mapping is needed, and the project can directly access the database using Java code. As we discussed in Chapter 4, to access a database to perform a data query, the following opera-tional sequence should be followed: 1) Load and register the database driver using the DriverManager class and Driver methods.2) Establish a database connection using the Connection object.3) Create a data query statement using the createStatement() method.4) Execute the dataRead More →

6.3  CREATE A JAVA APPLICATION PROJECT TO ACCESS THE ORACLE DATABASE First let’s create a new Java application project named OracleSelectFaculty using the NetBeans IDE 12. Go to the File|New Project menu item to start this process. FIGURE 6.5   The finished New Java Application wizard. Your finished New Java Application wizard is shown in Figure 6.5. Click on the Finish button to create this new Java application project, OracleSelectFaculty. Next we need to create five JFrame Forms as our graphical user interfaces, LogInFrame, SelectionFrame, FacultyFrame, CourseFrame and StudentFrame, to perform the data queries to five data Tables in our sample database. We also need toRead More →

FIGURE 6.7   A preview of the created SelectionFrame Form. FIGURE 6.8   A preview of the finished FacultyFrame Form window. One point to be noted is that you need to remove all default items located inside the model prop-erty of the Combo Box ComboName and ComboMethod. To do that, click on the ComboName combo box from the Design View, and then go the model property and click on the three-dot extension button to open the model pane. Select all four default items, and press the Delete button from the keyboard to remove all of those items. Perform similar operations for the ComboMethod. A preview of theRead More →

6.3.2   Create a Message Box with JDialog Form Class In the opened project, right-click on our project, OracleSelectFaculty, in the Projects win-dow and select the New|OK/Cancel Dialog Sample Form item from the popup menu to open the New JDialog Form dialog box. Enter MsgDialog in the Class Name box as our dialog FIGURE 6.9   The Finished CourseFrame Form window. FIGURE 6.10   Finished StudentFrame Form window. box’s name and select OracleSelectFacultyPackage from the Package box to select it as our package in which our MsgDialog will be developed. Your finished New JDialog Form dialog box should match the one shown in Figure 6.11. Click on theRead More →

Generally, the JDBC API enables users to access virtually any kind of tabular data source, such as spreadsheets or flat files, from a Java application. It also provides connectivity to a wide scope of Oracle databases. One of the most important advantages of using JDBC is that it allows users to access any kind of relational database in the same way with code, which means that the user can develop one program with the same code to access either an Oracle database or a MySQL database without code modification. The JDBC 3.0 and JDBC 4.0 specifications contain additional features, such as extensions to sup-port variousRead More →

6.3.3   Add Oracle JDBC Driver to the Project Before we can load and register a JDBC driver, first we need to add the Oracle JDBC Driver we downloaded and installed on our machine as a library file into our current project’s Libraries node to enable our project to find it when it is loaded and registered. Refer to Appendix H to get more details about downloading this JDBC driver. Perform the following steps to finish the JDBC library adding process: 1) Right-click on our project, OracleSelectFaculty, in the Projects window, and select the Properties item from the popup menu to open the Project Properties wizard.Read More →