Question: [ 1 0 : 0 6 , 3 0 / 0 1 / 2 0 2 4 ] Raghood : Assume that you have an

[10:06,30/01/2024] Raghood: Assume that you have an Oracle database schema named ebookshop, the ebookshop DB is located on 192.168.1.10 server. The ebookshop DB has several tables, including the Book table. The Oracle Schema DB user is ebookshop, whereas the DB password is pwd.
Notes:
The class OracleConnection is not fully written, you need to complete the missing parts -whenever necessary- so that you convert it into functioning code snippets.
Paste or upload the resulting new Java file as part of your answer below.
The file should contain no errors (errors are typically penalized)
//Write down the necessary imports in separate statements!
..............................
..............................
public class OracleConnection {
static final String DB_URL ="............................................................................................................";
static...
[10:06,30/01/2024] Raghood: Part 2: Design & Implementation
Given the Java class OracleConnection above. Based on the books table, Book Java class, and the BookCRUD Java interface below:
The UML class diagram for the class Book Java bean (class):
Book
- id: long
- title: String
- author: String
- double: price
- int: qty
+getId(): long
+setId(id: long): void
... the rest of getters and setters placed here
public interface BookCRUD {
int updateBook(Book b);//update existing book record.
}
Your task is to complete the BookCRUDOpertions Java class below so that you can save a book record to DB. Please take care of insertion status. You should also write a test case (i.e.1 line of code) that shows how to use BookCRUDOpertions from the main method.
Upload or paste the resulting Java file as part of your answer.
The file should contain no errors (errors are typically penalized)
public class BookCRUDOpertions implements BookCRUD{
public int updateBook(Book b){
int status =0;
try (----------------------------------------------
PreparedStatement pstmt =--------------------------------------;)
{
//Write down your code here to update the book object in DB.
} catch (SQLException se){
se.printStackTrace();
}catch (Exception e){
e.printStackTrace();
}
return status;
}
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!