-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCreateDatabase.py
More file actions
35 lines (31 loc) · 971 Bytes
/
Copy pathCreateDatabase.py
File metadata and controls
35 lines (31 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import sqlite3
def main():
with sqlite3.connect("Database.db") as db:
cursor=db.cursor()
sql="""create table User
(UserName text,
Password text,
FirstName text,
LastName text,
Email text,
StartFavourite text,
FinishFavourite text,
StartLast text,
FinishLast text,
primary key(UserName))
"""
cursor.execute(sql)
sql="""create table Location
(LocationID interger,
LocationName text,
Latitude text,
Longitude text,
Link text,
primary key(LocationID))
"""
cursor.execute(sql)
db.commit()
if __name__=="__main__":
choice=input("do you wish to make a new database? (y/n)").lower()
if choice =="y":
main()