Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. def fnAddNewPerson():
  2. getFName = input("Personnel first name: ")
  3. getLName = input("Personnel last name: ")
  4. c.execute("INSERT INTO Personnel (LastName, FirstName) \
  5. VALUES (?,?)", (getLName, getFName))
  6. new_db.commit()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement