In this walkthrough, we will take an existing workspace
that contains two projects:
- TravelClient contains our client-side UI code
- TravelLogic contains our server-side database code
We will deploy the file in TravelLogic to the server
so the code contained in it gets executed inside the database.
Then we will run the client-side UI to see how it calls the
server-executed code.
Taking a look at the FlightJDBC.java file source, we can see
there is a method named Next that contains JDBC code to create a connection within the database.