Introduction
In this challenge, you'll be working with SQLite to insert user data into a database table. The goal is to populate a users table with three specific records, each containing an id, name, and age.
You'll need to connect to the users.db database located in the ~/project directory and use the INSERT INTO command to add the provided user data. Ensure that the name column is not left empty, as it's defined as NOT NULL. Successful completion involves inserting Alice, Bob, and Charlie's information correctly, which can be verified by querying the table and confirming the expected output.