-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSQLCheck.py
43 lines (29 loc) · 915 Bytes
/
SQLCheck.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
35
36
37
38
39
40
41
42
43
#This implemetation (Auto data validator) was scrapped and replaced.
#This code is dead. Would like to revive?
"""
#import sqlite3
#from sqlite3 import Error
#def create_connection(pgdataapp):
# create a database connection to the SQLite database
#:param db_file: database file
#:return: Connection object or None
#try:
#conn = sqlite3.connect(pgdataapp)
#return conn
#except Error as e:
#print(e)
#return None
def validate_productionCode(conn):
cur = conn.cursor()
cur.execute('''SELECT production_code FROM complaint''')
all_rows = cur.fetchall()
for row in all_rows:
def main():
database = "pgdataapp.sql"
# create a database connection
conn = create_connection(database)
with conn:
print("Validating production codes...")
if __name__ == '__main__':
main()
"""