CRUD SQL Operations with Python using SQLite
 
  SQL Operations with Python using SQLite       SQLite is a software library that implements a self-contained, server less, zero-configuration, transactional SQL database engine. SQLite is the most widely deployed SQL database engine in the world.   Install SQLite on Windows   Step 1 − Go to https://www.sqlite.org/download.html  , and download precompiled binaries from Windows section.   Step 2 − Download sqlite-shell-win32-*.zip and sqlite-dll-win32-*.zip zipped files.   Step 3 − Create a folder C:\>sqlite and unzip above two zipped files in this folder, which will give you sqlite3.def, sqlite3.dll and sqlite3.exe files.   Step 4 − Add C:\>sqlite in your PATH environment variable and finally go to the command prompt and issue sqlite3 command, which should display the following result.   Creating Database   ·          Import the sqlite3 library.   ·          Create a connection to the database by ...
 
