Someone gave me some code to sift through, and I'm somewhat at a loss. I have this at the start of the page:
and then later, this:
ArrayList featReq = dbAccess.getRes ultList(featStr ing);
Now, I really am a novice here, but it appears that the JSP is calling some database, with class named AccessDB which the coder stored.... somewhere. If this is wrong, please correct me.
So, the question is: Where is the database stored on this site (and thus, how do I access it)?
Code:
<%@ page import="java.util.*, java.util.ArrayList, com.ei.AccessDB" %> AccessDB dbAccess = null; dbAccess = new AccessDB();
ArrayList featReq = dbAccess.getRes ultList(featStr ing);
Now, I really am a novice here, but it appears that the JSP is calling some database, with class named AccessDB which the coder stored.... somewhere. If this is wrong, please correct me.
So, the question is: Where is the database stored on this site (and thus, how do I access it)?
Comment