public class PersonDao {

    public void connect() {
        // connect
    }

    public List<String> retrieveNames() {
       // select all the people and get the name column and put them in a list
    }
}