Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

SQLite Examples

This directory contains SQLite database examples and demonstrations.

📁 Files

  • demo.py - Python demonstration script
  • favorites.py - Example working with favorites data
  • favorites.csv - Sample CSV data
  • favorites.db - SQLite database file
  • shows.db - SQLite database with shows data
  • readme.txt - Additional notes

🚀 Quick Start

Python Example

python demo.py
# or
python favorites.py

Using SQLite Command Line

sqlite3 favorites.db

Then you can run SQL commands:

.tables
SELECT * FROM favorites;

📚 Resources

💡 Common SQLite Commands

  • .tables - List all tables
  • .schema - Show database schema
  • .mode column - Set column display mode
  • .headers on - Show column headers
  • .quit - Exit SQLite