-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
57 lines (41 loc) · 1.19 KB
/
main.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# -*- coding: utf-8 -*-
# CREATE TABLE studenci (
# pesel CHAR(11),
# imie VARCHAR(20),
# nazwisko VARCHAR(20),
# PRIMARY KEY(pesel));
# CREATE TABLE meldunek (
# pesel CHAR(11),
# id_pok VARCHAR(5),
# PRIMARY KEY(pesel));
# CREATE TABLE wypozyczenia (
# lp VARCHAR(5),
# pesel CHAR(11),
# tytul VARCHAR(100),
# PRIMARY KEY(lp));
from wrapper_style_connector import insert_list, delete_data_of_table
from class_style_mysql_connector import DatabaseHandler
def main():
"""
Import some data from file and INSERT it into mysql database.
There are 2 styles of connectors used:
* :py:class:`class_style_mysql_connector`
* :py:class:`wrapper_style_connector.mysql_decorator`
:return:
"""
table = "wypozyczenia"
data = list()
with open("data/"+table+".txt") as f_studenci:
for line in f_studenci:
line = line.strip()
data_column = line.split("\t")
data.append(data_column)
print(data)
delete_data_of_table(table)
insert_list(table, data)
db = DatabaseHandler()
db.delete_data_of_table(table)
db.insert_list(table, data)
del db
if __name__ == "__main__":
main()