Annie Smith

Ranch Hand
+ Follow
since Mar 05, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Annie Smith

Those classes are available in Weblogic's server libraries.
If you have Oracle as the database, you should be using Oracle's type-4 driver instead of the ODBC bridge driver which is inherently limited.

http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/index.html
Download the driver for your version from the link above.

Here's a tutorial on using JDBC with Oracle:
http://infolab.stanford.edu/~ullman/fcdb/oracle/or-jdbc.html

Originally posted by sirisha makkapati:
who will call appropriate servlet specified in Web.xml,Is XML Parser plays any role in this context.What will happen when I stared runing the Servlet in broser.
I am willing to know different steps once strted to run the Servlet



Your curiosity can be satisfied in the servlet specifications.
17 years ago

Originally posted by sitaram irrinki:
What is the diff between deep AND shallow Serialization?



You probably mean deep copying with Serialization.
http://java.sun.com/developer/JDCTechTips/2001/tt0410.html
I presume the Excel sheet is on the same machine. So, you should be able to use Runtime.exec() to open it.
18 years ago
As the book mentions, you would not be able to compare dates for an equality. You should compare them for a range; like a date between something and something else. Your EJB QL should would need to be adjusted accordingly.

And, could you please edit your message to add some line breaks in between? It is really difficult to read at the moment.

Originally posted by maha laxmi maha laxmi:
Is Core JSTL Master the standard tag library book available in India?



A search on Amazon might be helpful.
18 years ago
JSP

Originally posted by Neeraj Vij:

getMaxInactiveInterval() is zero in my case.I have not accessed the page for more than 1 min. still session variables are returning the correct values. which i feel should it should not.



getMaxInactiveInterval() returning a value of zero implies that the container is free to choose the session timeout. The default timeout depends on the servlet container.
18 years ago
JSP
1. How to validate Date so that it should satisfy dd-mm-yyyy format?



2. How to insert validated Date in DB2? Where ps.setDate() comes into picture?

Read the JDBC tutorial for PreparedStatement.
18 years ago

Originally posted by jaspal singh:

to send the response of the request I need to have a reference to the response object.

otherwise how can refer the particular request.



Could you explain (maybe with some code) why you don't have a reference to the response object?
18 years ago

Originally posted by Hemant Agarwal:

But if our object that is calling and holding the resultset destroyed, then the resultset would also destroyed.



Originally posted by Hemant Agarwal:
How to make relations inside between mysql database tables.



Your description is confusing. What exactly do you want to do?

I think you should refer here
A Google search for both the terms should provide you the information
http://java.sun.com/products/jndi/
http://www.sun.com/software/jini/
18 years ago
If you are making use of one HttpSession, your attribute names should be different.
18 years ago
JSP