DBS211 Week 7- Database Application Development Solved

34.99 $

Description

5/5 - (1 vote)

Objective:
In this lab students learn:
• How to connect to a Oracle server from a C++ program.
• How to write and execute SQL queries in a C++ program.
Getting Started Instructions:
Create Oracle Server Connection:
To connect to the Oracle server from your C++ program in Visual Studio, you need to follow these steps:
Download the Oracle Instant Client SDK and libraries from for version 12.2.0.1.0 from http://dbs211.ca/files/instantclient_12_2.zip. Extract the zip archive to a local folder on your hard drive.
Once you have created the project:
The first step in the project is to establish that it is a .cpp project, so create a cpp file by right clicking on the “Source Files” folder and choosing “Add – new Item”. Choose a C++ File (.cpp) and enter a name of choice, I suggest something like “DBS211_DB_Connection_Test.cpp”.
In the top of the file write the 2 includes below:
#include <iostream> #include <occi.h>
and save the file.
To connect and work with databases in Oracle server, we use the <occi.h> header file or library. To set up the visual configuration, right click on your project name in the navigation bar and go to “Properties”:
Project/Properties
In the “Configuration” dropdown on the top-left, change to “release” and change “Platform” to “x64” and select “Apply”.
This previous step ensures that the Visual Studio project is set to release so other properties that are set apply to this version. In real life programming, you would work in Debug version until all testing is done, then change to release and test again.

Configuration Properties
In property Page, under Configuration Properties click on “C/C++” and then “General”. On the right side click the drop-down arrow beside “Include Directories” and choose “edit”.
Linking to the Includes Folder to reference the “occi.h” header file required for the project. On the new screen (shown right), click on the currently blank top line of the first box and you will see a “…” button. Click on this button and navigate to the folder where you extracted the Instant Client
SDK and then into the “include” folder, click “Select

Click OK and then Apply.
Linking to the Required Libraries
Now we need to tell the application where the library files we will be referencing are found. Navigation the Configuration Properties to Linker and then General
Under Additional Library Directories you will include a reference to the libraries folder:
instantclient_12_2sdklibmsvcc14 – relative to your zip archive extraction location.

You will then be required to tell the application which library we need to use.
Under Linker / Input / Additional Dependencies, you will need to add oraocci12.lib.

And lastly you will need to add the oraocci12.dll file to your project folder directory. Right click on the Project and choose: “Open Folder in File Explorer”. This is the folder where the .dll file must be placed. The required file can be copied from the main instantclient_12_2 folder.

Finally make sure that everything seems okay to this point by trying to build the project. An error free build is the first good sign.
Connecting to an Oracle database from a C++ Program
So now we will add some code to make sure we can connect we can do a simple test. In the .cpp file we created earlier, type in the following code to test your connection. It is important that you type it as to learn what is happening to make completing the project tasks much easier. (Hence why I am providing a screen shot rather than text so you cannot copy and paste)

If you see the console screen come up with Connection is Successful, then you are ready to move to the next steps.
Running a Simple SELECT query and outputting the results
So we will go through a series of steps to get some output. Type in the following code as shown within the code shown above…. (i.e. merge the two). Use the provided information in class (likely a PPT slideshow) to understand what each line is doing. Some key concepts you will want to understand include:
• Connection (conn)
• RecordSet (rs)
• next() method and how it works
• and all the terminate statements and why they are necessary.

Now to learn this. Complete the same concept, but for the employees table.
Some tasks that should be completed as part of working towards the first project milestone.
• the output should be formatted in a way that columns line up nicely
• the appropriate data types are used for the respective database data type
• all open objects should be terminated
• try to modify the SQL statement to include a WHERE clause to return a specific employee number and only show the output for the employee number typed in from a console prompt line.
• Error check the code for a couple things, 1 – the entered employee number is the right data type before trying to query the database and 2 – the employee number exists in the database before trying to output the values to the console window. Give appropriate error messages to the user in both cases.

  • Week_07-bfpmym.zip