}
public void doSelectNamesOfPplThatFollowMe(int uid) throws SQLException {
GetFollowers proc = this.getProcedure(GetFollowers.class);
assert (proc != null);
proc.run(conn, uid);
}
public void doSelectTweetsForUid(int uid) throws SQLException {
GetUserTweets proc = this.getProcedure(GetUserTweets.class);
assert (proc != null);