import sqlite3

def get_db_connection():
    # Update with your actual database path
    conn = sqlite3.connect('dap.db')
    return conn