forked from itucsdb1606/itucsdb1606
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiller.py
101 lines (91 loc) · 2.48 KB
/
diller.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
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
import json
import datetime
import re
import os
import psycopg2 as dbapi2
from flask import Flask
from flask import render_template
from flask import redirect
from flask import request
from flask.helpers import url_for
class Dil:
def __init__(self, name, ulkesi, photo, bilenler):
self.name = name
self.ulkesi = ulkesi
self.photo = photo
self.bilenler = bilenler
def init_diller_db(cursor):
query = """DROP TABLE IF EXISTS DIL"""
cursor.execute(query)
query = """CREATE TABLE DIL (
ID SERIAL PRIMARY KEY,
NAME varchar(100) UNIQUE NOT NULL,
ULKESI INTEGER NOT NULL REFERENCES LOKASYON(ID) ON DELETE CASCADE ON UPDATE CASCADE,
PHOTO varchar(80),
BILENLER INTEGER NOT NULL REFERENCES KISILER(ID) ON DELETE CASCADE ON UPDATE CASCADE DEFAULT 1
)"""
cursor.execute(query)
insert_dil(cursor)
def insert_dil(cursor):
query = """INSERT INTO DIL
(NAME, ULKESI, PHOTO, BILENLER) VALUES (
'Türkçe',
1,
'türkçe.jpeg',
3
)"""
cursor.execute(query)
query = """INSERT INTO DIL
(NAME, ULKESI, PHOTO, BILENLER) VALUES (
'İngilizce',
2,
'ingilizce.jpg',
4
)"""
cursor.execute(query)
query = """INSERT INTO DIL
(NAME, ULKESI, PHOTO, BILENLER) VALUES (
'Fransızca',
3,
'fransızca.jpg',
1
)"""
cursor.execute(query)
query = """INSERT INTO DIL
(NAME, ULKESI, PHOTO, BILENLER) VALUES (
'İtalyanca',
4,
'italyanca.jpg',
3
)"""
cursor.execute(query)
query = """INSERT INTO DIL
(NAME, ULKESI, PHOTO, BILENLER) VALUES (
'Almanca',
5,
'almanca.png',
5
)"""
cursor.execute(query)
def add_dil(cursor, request, dil):
query = """INSERT INTO DIL
(NAME, ULKESI, PHOTO, BILENLER) VALUES (
%s,
%s,
%s,
%s
)"""
cursor.execute(query, (dil.name, dil.ulkesi, dil.photo, dil.bilenler))
def delete_diller(cursor, id):
query="""DELETE FROM DIL WHERE ID = %s"""
cursor.execute(query, id)
def update_diller(cursor, id, dil):
query="""
UPDATE DIL
SET NAME=INITCAP(%s),
ULKESI=%s,
PHOTO=INITCAP(%s),
BILENLER=%s
WHERE ID=%s
"""
cursor.execute(query,(dil.name, dil.ulkesi, dil.photo, dil.bilenler, id))