Computing Society: Session 9 Intro to Database
📚 Session Note: Introduction to Databases
Total Time: 60 minutes
1. Why Databases Are Important 🗂️ (10 minutes)
Explanation:
🔍 Overview:
- Databases store, manage, and retrieve data efficiently.
- Modern applications heavily rely on databases to power features like user profiles, transactions, and search functionalities.
📖 Examples:
- E-commerce: Customer information, orders, and product inventories.
- Social Media: User posts, comments, and friend connections.
- Gaming: Player progress, scores, and game states.
Activity Breakdown:
- (5 minutes) Introduction to the importance of databases and examples.
- Noobs Task: Identify 3 real-world applications that likely use databases.
- (5 minutes) Group discussion on where data might be stored in these applications.
2. Types of Databases 🛠️ (10 minutes)
Explanation:
🛠️ SQL Databases: Structured data stored in tables (e.g., MySQL, SQLite, PostgreSQL).
🌐 NoSQL Databases: Flexible schema for unstructured data (e.g., MongoDB).
🔮 Vector Databases: Optimized for AI and similarity searches (e.g., Pinecone).
Focus for This Session: SQL (relational databases).
Activity Breakdown:
- (5 minutes) Overview of SQL vs. NoSQL with examples.
- Noobs Task: Match example data to SQL or NoSQL.
- (5 minutes) Group brainstorm on potential use cases for vector databases.
3. Hands-On: SQL Basics 🔧 (25 minutes)
Explanation:
- ⚙️ Environment Setup:
Create a virtual environment using
conda
:1
2conda create -n db_session python=3.10 -y
conda activate db_sessionInstall required Python packages:
1
pip install sqlite3 SQLAlchemy
Initialize a local SQLite database.
Activity Breakdown:
- (5 minutes) 🤓 Simpler Example:
- Demonstrates how to create and query a SQLite database.
1 | import sqlite3 |
- (15 minutes) 🏆 Challenge Example:
- Build a simple application with a user interface for data input.
Example Data to use:
Here are some example data entries you can test, along with the code to insert them into the database:
Example Data:
Name | Age |
---|---|
Bob | 30 |
Charlie | 22 |
Diana | 28 |
Edward | 35 |
Fiona | 24 |
Code to Insert Example Data:
1 | import sqlite3 |
Expected Output After Insertion:
1 | Data in the database: |
This code adds multiple rows of data at once using the executemany
method, ensuring efficient batch insertion.
4. SQL Injection and Its Prevention 🚨 (10 minutes)
Warning! Do not use the knowledge here to break legacy systems. Hacking is illegal.
Explanation:
Concept:
- SQL injection exploits vulnerabilities in SQL queries.
- Example: A malicious user provides
"1 OR 1=1"
as input.
⚠️ Breaking the Code with SQL Injection:
- Suppose we modify the challenge example and do not use parameterized queries.
1 | # Vulnerable code |
What happens?
- The input
"1 OR 1=1"
bypasses the intended logic, potentially exposing all user records.
- The input
Example Output:
1
[(1, 'Alice', 25), (2, 'Bob', 30), ...] # Exposes all data
Activity Breakdown:
- (5 minutes) Try a basic SQL injection and observe the consequences.
- (5 minutes) ✅ Prevention: Use parameterized queries to prevent user input from altering the SQL logic.
1 | # Safe parameterized query |
5. Introducing ORM with SQLAlchemy 🐍 (10 minutes)
Explanation:
🤔 Why ORM:
- Simplifies database interactions by using Python objects.
- Abstracts raw SQL queries, making code cleaner and less error-prone.
📜 SQLAlchemy Basics:
- Define models (tables as Python classes).
- Perform ==CRUD operations== (Create, Read, Update, and Delete) using the ORM interface.
Activity Breakdown:
- (5 minutes) Define a simple SQLAlchemy model and create tables.
1 | from sqlalchemy import create_engine, Column, Integer, String |
- (5 minutes) Perform CRUD operations.
1 | Session = sessionmaker(bind=engine) |
Wrap-Up and Q&A (5 minutes)
- Summarize the session with a quick review of key concepts 📖.
- Open the floor for questions and additional clarifications 🙋♂️.