22. Full CRUD operation with SQLite database using Python | Rajiv

preview_player
Показать описание
SQLite - SQLite is a self-contained, high-reliability, embedded, full-featured, public-domain, SQL database engine. It is the most used database engine on the world wide web. It's built for all mobile phones and most computers and comes bundled inside countless other applications that people use every day.

sqlite3 python module
CRUD operation
Create Data
Read Data
Update Data
Delete Data

Individual function to create Table, Add data into table, read data from table, Delete data from table and Update table.

Write SQL Query with help of Execute method

Simplified class example
Рекомендации по теме
Комментарии
Автор

SQLite database is very handy to use as it is explained and sqlite3 python library makes it further simplified, I will be trying to use SQLite database for my next project.

swat
Автор

Sqlite is very light weight could be good for mobile application

beiladevi