-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb_build.py
34 lines (27 loc) · 1.14 KB
/
db_build.py
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
# creates tables for database stored in DB_FILE: smapify.db
# field names created; no records
import sqlite3 #enable control of an sqlite database
DB_FILE="smapify.db"
db = sqlite3.connect(DB_FILE, check_same_thread=False) #open if file exists, otherwise create
c = db.cursor()
def createTable(tableName, fieldNames):
'''creates new table with list of parameters to be taken in'''
#facilitate db ops
commandArgs = "("
colTypes = []
for name in fieldNames:
commandArgs += name + " " + fieldNames[name] + ","
colTypes.append(fieldNames[name])
commandArgs = commandArgs[:-1]
commandArgs += ")"
c.execute("CREATE TABLE " + tableName + " "+ commandArgs)
def closeDB():
db.commit() #save changes
db.close() #close database
usersParam = {"UserID":"INTEGER PRIMARY KEY","Username":"TEXT UNIQUE","Password":"TEXT","Playlists":"TEXT"}
createTable("users", usersParam)
songsParam = {"SongID":"INTEGER PRIMARY KEY","SongTitle":"TEXT","Artist":"TEXT","Link":"TEXT","PlaylistID":"INTEGER"}
createTable("songs", songsParam)
playlistParam = {"PlaylistID":"INTEGER PRIMARY KEY", "Songs":"TEXT"}
createTable("playlists", playlistParam)
closeDB()