statement.prepare();
statement.bind(1, categoryID);
statement.bind(2, name);
statement.bind(3, location);
statement.bind(4, phone);
statement.execute();
statement.close();
// Retrieve the auto-generated ID of the item just added
id = _db.lastInsertedRowID();
} catch (final DatabaseException dbe) {