CorgiDB Docs
  • CorgiDB
  • Installation
  • Quickstart
  • class CorgiDB
    • CorgiDB.utils.create_table
    • CorgiDB.utils.get_table
    • CorgiDB.utils.delete_table
  • objects Package
    • class Table
      • corgidb.objects.Table.cols
      • corgidb.objects.Table.delete
      • corgidb.objects.Table.get
      • corgidb.objects.Table.insert
      • corgidb.objects.Table.update
      • corgidb.objects.Table.remove
    • class Condition
    • class DataChunk
Powered by GitBook
On this page
  • What is an *.sqlite file
  • How to create a CorgiDB object ?

class CorgiDB

PreviousQuickstartNextCorgiDB.utils.create_table

Last updated 2 years ago

CorgiDB class is the heart of the library that will provide the connection to the database and help user to manipulate the database through its functionality

Initializing a CorgiDB objects and having a *.sqlite file to work with must be the first step of using this library

What is an *.sqlite file

An SQLITE file contains a database created with SQLite, a lightweight () widely used in application development for storing embedded databases. SQLITE files are often created by software developers for storing data used by their applications.

How to create a CorgiDB object ?

Just import it and initailized the class with the path to *.sqlite file

from corgidb import CorgiDB

cdb = CorgiDB(database_path="path/to/db.sqlite")
RDBMS
SQLite Home Page
Logo