Sqlit3 Installation

Installation :

  1. copy sqlite3 file

  2. Create A New Folder Inside C/sqlite .

  3. past sqlite3 file Inside C/sqlite.

  4. Check The Installation:

  5. Open cmd and type sqlite3 .If show below text sqlite3 install Successful.

SQLite version 3.40.1 2022-12-28 14:03:47
Enter ".help" for usage hints.
Connected to a transient in-memory database.
Use ".open FILENAME" to reopen on a persistent database. 

How To Use Sqlite3 In Python

Sqlite3 connection driver already inbuilt in python3 . Only need import sqlite3.

import sqlite3

Last updated