It turns out that the project included an incorrect version of _db.php that initializes the database. A fixed project is now available for download.
The employees are stored in the database, in a table called "resources" with the following structure:
CREATE TABLE resources (
id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
name VARCHAR (200)
);
Let me know if it doesn't work as expected.