Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

LAB ACTIVITY 1 0 . 1 . 1 : LAB - Database programming with Java Complete the Java program to create a Horse table, insert

LAB
ACTIVITY
10.1.1: LAB - Database programming with Java
Complete the Java program to create a Horse table, insert one row, and print the row.
Implement the following methods. Method parameters are described in the template. Do not modify the main program.
createConnection() creates a connection to the database. This method calls DriverManager.getconnection () with the following connection information:
User: root
Server address: 127.0.0.1
Database: zybooksdb
Password is not necessary and can be omitted.
createTable () creates Horse, with five columns:
ID - integer, primary key, not null
Name - varchar(30)
Breed-varchar(30)
Height-double
Birthdate-varchar(10)
Before creating Horse, drop the table if the table exists (from a prior run).
insertHorse () inserts one row into Horse:
(1, 'Babe', 'Quarter horse', 15.3,'2015-02-10')
selectAllHorses () selects and prints all Horse rows, as follows:HINT: Use import java.sq1.* to access all classes and methods of the Java-SQL API. Calls to these methods may throw exceptions and must be enclosed in the try block of a try-catch statement.
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

Explain all drawbacks of application procedure.

Answered: 1 week ago

Question

Explain the testing process of accounting 2?

Answered: 1 week ago