python - pro - 20 - SQLite



SQLite server`a gerek duymayan bir veritabani cinsi

Yerelde veri tutulacaksa SQLite daha iyi, cunku select delete veya update`i , kayit/record secerek, SQL tabanli oldugu icin SQLite`ta kolayca yapabiliriz. Ama txt veya excel dosyalar boyle bir imkani daha zorluklarla sagliyorlar.

SQLite sadece bir dosya oluyor, uzantisi da db .

Dosya icindeki tablo ve datalari gormek icin sqlitebrowser.org u kullaniyoruz

download icin : https://sqlitebrowser.org/ 

baska sey yuklemeye gerek yok SQLite paketi python ile beraber geliyor.

Ornek database icin

sqlitetutorial.net 

import sqlite3

connectionsqlite = sqlite3.connect("chinook.db")

mycursor = connectionsqlite.cursor()
mycursor.execute("Select * from customers")
result = mycursor.fetchall()

print(result)

connectionsqlite.close()


















Comments

Popular posts from this blog

python - pro - 21 - NoSQL

python - pro - 19 - MySQL