assert (proc != null);
proc.run(conn, userId, nameSpace, pageTitle);
}
public void updatePage(String userIp, int userId, int nameSpace, String pageTitle) throws SQLException {
Article a = getPageAnonymous(false, userIp, nameSpace, pageTitle);
conn.commit();
// TODO: If the Article is null, then we want to insert a new page.
// But we don't support that right now.
if (a == null) return;