try {
// Insert a new record in the DirectoryItems table
final Statement statement =
_db.createStatement("INSERT INTO DirectoryItems VALUES(null, ?, ?, ?, ?)");
statement.prepare();
statement.bind(1, categoryID);
statement.bind(2, name);
statement.bind(3, location);
statement.bind(4, phone);
statement.execute();