Question: Specifications: Create a database file (players_Data.db) that contains a Player table that stores the data for each player. Possible enhancement Add an update command. This

Specifications: Create a database file (players_Data.db) that contains a Player table that stores the data for each player.

Possible enhancement
Add an update command. This command should prompt the user to enter the name of a player. Then, it should let the user update the wins, losses, and ties for the player.
Note: Games field shown in the view command is the sum of Wins, Losses, and Ties
Games = Wins +Losses +Ties
Create a program that allows you to store the data for players of a game. Console Player Manager COMMAND MENU view - View players Add a player - Delete a player del exit - Exit program Command: view Name Wins Losses Ties Games Mike Joel 3 7 7 10 14 20 Command: add Name: anne Wins 9 Losses: 5 Ties: 3 Anne was added to database Command: view Name Wins Losses Ties Games Anne Mike Joel 17 14 20 7 10 Command: del Name: anne Anne was deleted from database Command: exit Bye
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
