Re: preparedStatement

2003-02-26 Thread Abdul jeelani
u r right. You cannot loop thru' resultsets more than once. Regards, Abdul - Original Message - From: Shahata, Ash [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February 26, 2003 4:48 PM Subject: Re: preparedStatement I tried this already, but unfortuanltly I get the same

Re: html review

2003-02-20 Thread Abdul jeelani
U can use snagIt for the purpose of capturing screen output - Original Message - From: Amit Ghaste [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, February 21, 2003 1:55 AM Subject: Re: html review there is actually a software which recorded everything on the screen, including

resultset question

2003-02-06 Thread Abdul jeelani
Hi, One basic question: String query = Select * from table; ResultSet rs = statement.executeQuery(query); Now, suppose the query returns 10,000 records. Whether the resultset will hold all the 10,000 records in memoy (RAM - stack, heap or cache does not matter)., or whenever a rs.next() is

Using Tomcats built-in database pooling

2003-02-05 Thread Abdul jeelani
HI, I have tried using the Tomcat's built-in db pooling mechanism. I am able to get reference to datasource, but I am getting the following error when I try to get connection from the datasource. java.sql.SQLException: Io exception: Connection

Re: exit from the current loop

2003-01-23 Thread Abdul jeelani
There is a huge difference between break and continue. break causes the loop to terminate at that point itself, whereas continue causes the remaining statements in the loop to be skipped (not executed) and goes back to check the condition. hope it is clear. - Original Message - From:

tomcat apache

2003-01-17 Thread Abdul jeelani
Hi, I am using Tomcat apache server for deploying jsp pages. I want to have a well defined folder structure to arrange the jsp pages according to the modules they belong to. I want to know how to do this so that the jsp pages can be accessed from a browser using a url like

how to compare values in javascript

2002-12-25 Thread Abdul jeelani
Hi, I need to compare the selected value of a combo box with a string. I tried using == and !=, but it is not working correctly. can any body out there give me the correct the syntax. tnx, Abdul === To unsubscribe: mailto