| Author |
JDBC connection using bean
|
Amol More
Greenhorn
Joined: Jan 22, 2010
Posts: 29
|
|
hi ranchers
i am trying to connect to the oracle database with the help of beans & jsp
i am not that familiar with and i am using netbeans as an interface
can you please help me with the procedure of connecting to the database
i have created a database in oracle of name emplyoee with first name ,last name and empno
this is my bean page
and this is my jsp page
ITS SHOWING ME AN ERROR in jsp page i have specifed it below
please help me with the procedure and rectify errors if any
<jsp:useBean id="db" scope="request" class="DbBean" /> //ERR CANNOT FIND SYMBOL
|
 |
Deepak Bala
Bartender
Joined: Feb 24, 2006
Posts: 6588
|
|
|
What is the error ?
|
SCJP 6 articles - SCJP 5/6 mock exams - SCJP Mocks - SCJP 5 Mock exam (Word document ) - SCJP 5 Mock exam in Java.Inquisition format
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32611
|
|
|
What error?
|
 |
Seetharaman Venkatasamy
Ranch Hand
Joined: Jan 28, 2008
Posts: 5575
|
|
1."<jsp:useBean id="db" scope="request" class="DbBean" />" --> class = "DbBean" this should be fully qualified name. i.e, class must be in some packages. example : class = "bean.DbBean"
2. Here what is the significance of <jsp:setProperty name="db" property="*" /> ?
3.by the way: Establishing Database connection in jsp is highly discouraged[Avoid Scriplet]
|
 |
Amol More
Greenhorn
Joined: Jan 22, 2010
Posts: 29
|
|
the error i am getting is cannot find symbol in the jsp page at the line 22
|
 |
Jeanne Boyarsky
internet detective
Marshal
Joined: May 26, 2003
Posts: 26155
|
|
|
I agree this is poor practice. That said, where is the code that sets DBBean in the request? It should be in a servlet somewhere. If it doesn't exist, that explains why the bean isn't in the request.
|
[Blog] [JavaRanch FAQ] [How To Ask Questions The Smart Way] [Book Promos]
Blogging on Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, OCAJP, OCPJP beta, TOGAF part 1 and part 2
|
 |
 |
|
|
subject: JDBC connection using bean
|
|
|