summaryrefslogtreecommitdiffstats
path: root/database.py
blob: 847b617fa5161c174a69915c3a9b9927c954eacd (plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
'''
Programmer's Name: Ashton
Contact info: [HIDDEN]
Date Created: Nov 20, 2023
Version: 1.0.0
Purpose: CRUD for editing the database.
ISSUES: None noticed at the moment.
'''
import mysql.connector
import sys

# CHANGE AS NEEDED
HOST="localhost"
USER="root"
PASSWD=""
DATABASE="pokemon"
TABLE = "pkmn"

# This connects to the database
database = mysql.connector.connect(host=HOST,user=USER,password=PASSWD,database=DATABASE)
selection = database.cursor()



# Populate the database
def mk():
    '''
    Creates the database and table.
    '''
    selection.execute("CREATE DATABASE pokemon")
    selection.execute("CREATE TABLE pkmn (hex VARCHAR(2), name VARCHAR(255))")

# CREATE
def CREATE(one, two, val_one, val_two):
    '''
    This creates an entry, inserting it into the given table using the
    column names (one, two) and the values (val_one, val_two).
    '''
    command = "INSERT INTO " + TABLE + " (" + one + "," + two + ") VALUES (%s, %s)"
    values = (val_one, val_two)
    selection.execute(command, values)
    database.commit()
    print(selection.rowcount,"record inserted.")
    exit

# READ
def READ(column, val):
    '''
    Finds all entries of a given value from a given colum.
    '''
    command = "SELECT * FROM " + TABLE + " WHERE " + column + " = '" + val + "'"
    selection.execute(command)
    results = selection.fetchall()
    for x in results:
        print(x)
    exit

# UPDATE
def UPDATE(fix_col, fix_val, location, val):
    '''
    Corrects an entry from at a given value with a given coumn
    '''
    command = "UPDATE " + TABLE + " SET " + fix_col + " = '" + fix_val + "' WHERE " + location + " = '" + val + "'"
    selection.execute(command)
    database.commit()
    print(selection.rowcount, "record(s) modified.")
    exit

# DELETE
def DELETE(column, val):
    '''
    Removes an entry based on the given column and respective value.
    '''
    command = "DELETE FROM " + TABLE + " WHERE " + column + " = '" + val + "'"
    selection.execute(command)
    database.commit()
    print(selection.rowcount, "record(s) deleted.")
    exit

if sys.argv[1] == "CREATE":
    user_hex = sys.argv[2]
    user_name = sys.argv[3]
    CREATE("hex", "name", user_hex, user_name)

if sys.argv[1] == "READ":
    user_col = sys.argv[2]
    user_val = sys.argv[3]
    READ(user_col, user_val)

if sys.argv[1] == "UPDATE":
    user_col = sys.argv[2]
    user_val = sys.argv[3]
    user_loc = sys.argv[4]
    user_loc_val = sys.argv[5]
    UPDATE(user_col, user_val, user_loc, user_loc_val)

if sys.argv[1] == "DELETE":
    user_col = sys.argv[2]
    user_val = sys.argv[3]
    DELETE(user_col, user_val)