forked from VolkanAltintas/Python-Dersleri
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsqliteGiris.py
59 lines (43 loc) · 1.18 KB
/
sqliteGiris.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
import sqlite3
#import kutuphane
from kutuphane import komutCalistir, listele, topla, yazdir
db=sqlite3.connect('deneme.db')
imlec=db.cursor()
"""
komut="CREATE TABLE IF NOT EXISTS veri(ad,soyad,yas)"
imlec.execute(komut)
komut="INSERT INTO veri VALUES('Ahmet','Avcu',18)"
imlec.execute(komut)
db.commit()
komut="Select * from veri"
imlec.execute(komut)
"""
"""
bilgiler=imlec.fetchall()
print(bilgiler)
for bilgi in imlec:
print(bilgi)
komut="select * from veri where ad=?"
imlec.execute(komut,('Erhan',))
bilgi=imlec.fetchone()
print("İsim :"+str(bilgi[0]))
print("Soyisim :"+str(bilgi[1]))
print("Yaş :"+str(bilgi[2]))
komut="select * from veri"
imlec.execute(komut)
bilgiler=imlec.fetchmany(3)
print(bilgiler)
komut="UPDATE veri SET yas=? where ad=?"
imlec.execute(komut,(20,'Erhan'))
db.commit()
komut ="Select * from veri"
imlec.execute(komut)
bilgiler=imlec.fetchall()
print(bilgiler)
komut="Delete from veri where ad=?"
imlec.execute(komut,('Volkan',))
db.commit()
"""
#komut="INSERT INTO veri VALUES('Ayça','Topçu',18)"
komutCalistir(imlec,"INSERT INTO veri VALUES('Bahadır','Akkaşoğlu',22)",db)
yazdir(imlec)