Skip to content

Latest commit

 

History

History
17 lines (16 loc) · 526 Bytes

README.md

File metadata and controls

17 lines (16 loc) · 526 Bytes

Database

You will be strange by knowing that Python has a module sqlite3 for performing database management. Its basic a DATABASE Management System using Python Here is one example for it with the GUI based programm

Prequsities:

On Windows:

pip install db-sqlite3

On Linux:

pip3 install db-sqlite3
or
python3 -m pip install db-sqlite3

Included Example:

  1. How to delete a data from the DATABASE
  2. How to edit the data from the DATABASE
  3. How to Extract the data from the DATABASE etc.