Question
can any one please answer this questionnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn pleaseeee you must create an abstract collection and model class, along with concrete classes for accounts and todos.
can any one please answer this questionnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn pleaseeee
you must create an abstract collection and model class, along with concrete classes for accounts and todos. Your program should implement record search for all records, find a record by ID, insert record, update record, and delete record functionality. See the "staticdatabase.php" code for a start on this program, which you can find in the github repo in this unit. Your program should display a demonstration of each operation in the same way that the string and array program displays data.
Your output should be like this for accounts and todos and show all fields for the respective record type.
This is just a sample and doesn't have the correct data for your tables, this only illustrates the output.
Select One Record
Select Record ID: 1
ID | Field name 1 | field name 2 |
1 | Some field | Another field |
Select all Records
Select ALL records
ID | Field name 1 | field name 2 |
1 | Some field | Another field |
2 | Some field | Another field |
Insert NEW Record
Todo Record data: Title = New todo, status=incomplete
ID | Title | status |
1 | Some field | Another field |
2 | Some field | Another field |
3 | new todo | incompete |
This is just a sample and doesn't have the correct data for your tables, this only illustrates the output.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started