IS240 Project 3 Create a sqlLite database that contains an employee table. The table should contain the following fields: EmployeeID, FirstName, LastName, Salary, YearStarted, DOB, Archived The name...

1 answer below »
i need someone to do this


IS240 Project 3 Create a sqlLite database that contains an employee table. The table should contain the following fields: EmployeeID, FirstName, LastName, Salary, YearStarted, DOB, Archived The name of the database should be “Employee.db”. Present the user with a menu containing these options: 1. Add an employee to the database 2. Archive an Employee 3. List all the Employees 4. Show all unarchived employees 5. Show all new employees who started their job on/or after 1/1/2017 6. Exit When the user chooses which menu item they want, the program should show them what they asked to see. In case of 1 and 2, the program should ask the user all the information it needs about the new employee or ask which employee should be archived and change the database accordingly. The menu should then re-appear, so that the user can pick another option – until the user decides to exit the program. Make sure you save your Python files(s) to the weekly module associated with this assignment and name your Python files as W12P3xx, where xx is the first initial of your first and last name. If you are not sure how to submit these files to Blackboard, submit your question on our course Discussion Board Questions forum. Notes: 1. Name of Database is “Employees.db” 2. Name of table is “tblEmployee 3. tblEmployee field names and format are: Field DescriptionSQLITE field name and format a. Employee ID -EmployeeID is integer format b. First Name - FirstName is text format c. Last Name -LastName is text format d. Salary -Salary is floating real format e. Year started -Year started is integer format (yyyy) f. Date of Birth -DOB is date format yyyy-mm-dd g. Archived -Archived is text format (value “Y” or “N”) 4. When you add an employee do not worry about data validation but make sure you follow the field format characteristics i.e. integer is a number without decimals, real is a number with decimals, text is text, date is in the format of yyyy-mm-dd. 5. When you archive an employee, you change the Archived column from “N” to “Y”. 6. When you list all the employees, output should be formatted according to field characteristics i.e. Salary would be $1,234.56 and they should be aligned by column for example: 1StevenEngorn$1,234.5620161982-07-30 3CliffordBaskerville$5,432.1020171981-09-20 4JohnSmith$ 900.0020171980-04-12 7. When you list all archived employees, use the same formatting as note 6 but only for employees where their Archived field is = “Y”. 8. When you list all unarchived employees, use the same formatting as note 6 but only for employees where their Archived field is = “N”. 9. When you list all employees, who started their job on/or after 1/1/2017, use the same formatting as note 6 but only include those employees whose YearStarted is greater than or equal 2017.
Answered Same DayApr 30, 2021

Answer To: IS240 Project 3 Create a sqlLite database that contains an employee table. The table should contain...

Rohith answered on Apr 30 2021
153 Votes
56162.py
import sqlite3
from sqlite3 import Error
sql_create_employee_table = """ CREATE TABLE IF NOT EXISTS tblE
mployee (
EmployeeID integer PRIMARY KEY,
FirstName text NOT NULL,
LastName text NOT NULL,
Salary real NOT NULL,
YearStarted real NOT NULL ,
DOB date NOT NULL,
Archived text NOT NULL
); """
def create_connection(db_file):
""" create a database connection to a SQLite database """
conn = None
try:
conn = sqlite3.connect(db_file)
print("Connection successful")
except Error as e:
print(e)
return conn
def create_table(conn, create_table_sql):
""" create a table from the create_table_sql statement
:param conn: Connection object
:param create_table_sql: a CREATE TABLE statement
:return:
"""
try:
c = conn.cursor()
...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here