Create a program that allows you to store the data for players of a game. Console Player Manager COMNDND MENU view - vie
Posted: Thu Jul 14, 2022 2:18 pm
Create a program that allows you to store the data for players of a game. Console Player Manager COMNDND MENU view - view playera add - Add a player del - Delete a player exit - Exit program Specifications Create a database file (players_Data.db) that contains a Player table that stores the data for each player.
Specifications Create a database file (players_Data.db) that contains a Player table that stores the data for each player. CREATE TABLE if not exists Player Display the players in order by wins, starting with the player with the most wins. Assume that the name for each player is unique. 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
Specifications Create a database file (players_Data.db) that contains a Player table that stores the data for each player. CREATE TABLE if not exists Player Display the players in order by wins, starting with the player with the most wins. Assume that the name for each player is unique. 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