OOP PROJECT
  • Sqlit3 Installation
  • Database Class
    • টেবিল তৈরী করা
  • Student Information Crud
    • insert student
    • get all student
    • get student(id)
    • Update Student
    • Delete Student
    • Complete Code
Powered by GitBook
On this page
  • Installation :
  • How To Use Sqlite3 In Python

Sqlit3 Installation

NextDatabase Class

Last updated 2 years ago

Installation :

  1. Download Sqlite3 .

  2. copy sqlite3 file

  3. Create A New Folder Inside C/sqlite .

  4. past sqlite3 file Inside C/sqlite.

  5. Check The Installation:

  6. 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

Precompiled Binaries for Windows