sqlite3

Sqlit3 Installation

Installation :

  1. 2.copy sqlite3 file

  2. 3.Create A New Folder Inside C/sqlite .

  3. 4.past sqlite3 file Inside C/sqlite.

  4. 5.Check The Installation:

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

SQLite version 3.40.1 2022-12-28 14:03:47Enter ".
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