Shekar Matrubhutam/fgd/Cummins is out of the office.

2001-07-30 Thread Shekar M
I will be out of the office from 07/30/2001 until 08/02/2001. I will be in Stoughton. If this is an emergency, please contact Tim Indra at 608-873-4239. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-IN

Re: Split the ResultSet Values

2001-07-30 Thread Hans Bergsten
Prakasan OK wrote: > > Hi All, > I want to split the resultset values into different parts. > I want to display the 10 results first and if the user clicks next > button > i would like to display the next 10 results and so on similar > to the search results in Google. Any idea about how this

Re: Split the ResultSet Values

2001-07-30 Thread Shaili Anja
Hi, Declare a variable and set the number of pages. If the current row exceeds that number, call a function. In this function, display the page headings etc. and also the button clicking on which takes to next page. -Original Message- From: A mailing list about Java Server Pages specifica

Re: Split the ResultSet Values

2001-07-30 Thread Mattias Jiderhamn
> Hi All, > I want to split the resultset values into different parts. > I want to display the 10 results first and if the user clicks next > button > i would like to display the next 10 results and so on similar > to the search results in Google. Any idea about how this can be done > using

Split the ResultSet Values

2001-07-30 Thread Prakasan OK
Hi All, I want to split the resultset values into different parts. I want to display the 10 results first and if the user clicks next button i would like to display the next 10 results and so on similar to the search results in Google. Any idea about how this can be done using JSP? Thanks i

Re: JSP JDBC bean doesn't seem to release cursor !?

2001-07-30 Thread Mattias Jiderhamn
> I am using connection pooling. ... > even though I have issued conn.close() explictedly (?) ! If you use a connection pool you should *NOT* close your connection but return it to the pool. === To unsubscribe: mailto [EMAIL

Re: OFF-TOPIC: ResultSet.getDate()

2001-07-30 Thread Panayotou, Michael
try getTimeStamp -Original Message- From: Atilio Ranzuglia [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 31, 2001 2:57 AM To: [EMAIL PROTECTED] Subject: OFF-TOPIC: ResultSet.getDate() Sorry everyone: can anyone help me here? The following line: java.sql.Date date = rs.getDate("...");

Re: JSP JDBC bean doesn't seem to release cursor !?

2001-07-30 Thread Panayotou, Michael
You must increase the init.ora parameter open_cursors -Original Message-From: Keith Kwiatek [mailto:[EMAIL PROTECTED]]Sent: Monday, July 30, 2001 11:33 PMTo: [EMAIL PROTECTED]Subject: JSP JDBC bean doesn't seem to release cursor !? Hello,   I am running oracle 8.1.6, an

signoff JSP-INTEREST

2001-07-30 Thread srinivas tadikonda
signoff JSP-INTERESTGet your FREE download of MSN Explorer at http://explorer.msn.com === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INT

signoff JSP-INTEREST

2001-07-30 Thread Shaili Anja
  signoff JSP-INTEREST

Re: signoff JSP-INTEREST

2001-07-30 Thread ankit
--- Venu Babu <[EMAIL PROTECTED]> wrote: > signoff JSP-INTEREST > > __ Do You Yahoo!? Make international calls for as low as $.04/minute with Yahoo! Messenger http://phonecard.yahoo.com/

Re: Question on proper use of paths to resources (images, links, etc) when working with multiple web-apps (.war) in a single app server?

2001-07-30 Thread Duffey, Kevin
I think I may have found it. I was using request.getServletPath() where I think the proper call is request.getContextPath(). This seems to return "" when in the default root application. I haven't tried its use yet in a second web-app deployed, but I assume if I deploy a web-app with a path of /

Re: OFF-TOPIC: ResultSet.getDate()

2001-07-30 Thread Torsten Schlumm
Although java.sql.Date extends java.util.Date (which contains time values) the SQL specification says: There are three classes of datetime data types defined within this International Standard: DATE - contains the s YEAR, MONTH, and DAY; TIME - contains the s HOUR, MINUTE, and SECOND; a

OFF-TOPIC: ResultSet.getDate()

2001-07-30 Thread Atilio Ranzuglia
Sorry everyone: can anyone help me here? The following line: java.sql.Date date = rs.getDate("..."); gives me the following: date = '2000-08-20' The hour and minutes are missing. The same happends with PreparedStatement.setDate(), the hour and minutes appear to be taking a nap. Thanks a lot

Re: OFF-TOPIC: ResultSet.getDate()

2001-07-30 Thread Artigas, Ricardo Y.
you can use rs.getTime() to get the time part. > -Original Message- > From: Atilio Ranzuglia [SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, July 31, 2001 7:57 AM > To: [EMAIL PROTECTED] > Subject: OFF-TOPIC: ResultSet.getDate() > > Sorry everyone: can anyone help me here? > > The follo

Re: OFF-TOPIC: ResultSet.getDate()

2001-07-30 Thread Phil Lopez
Try using the get/set Timestamp methods. At 04:56 PM 7/30/01 -0700, you wrote: >Sorry everyone: can anyone help me here? > >The following line: > >java.sql.Date date = rs.getDate("..."); > >gives me the following: > >date = '2000-08-20' > >The hour and minutes are missing. > >The same happends wi

Digby Knight/Information Systems/Perpetual plc is out of the offi ce.

2001-07-30 Thread Knight, Digby
I will be out of the office starting 30/07/2001 and will not return until 03/08/2001. I will respond to your message when I return. The information in this e-mail and any attachments (the 'e-mail') is confidential and intended solely for the addressee(s) named above. This e-mail may be subjec

Question on proper use of paths to resources (images, links, etc) when working with multiple web-apps (.war) in a single app server?

2001-07-30 Thread Duffey, Kevin
Hi all,   I am trying to properly use paths to images, links and what not within my "outside" web application. I will also have the inside and admin applications deployed in the same one web container (Orion App Server). Originally, I would ALWAYS do the following for links and images:     clic

Re: JSP JDBC bean doesn't seem to release cursor !?

2001-07-30 Thread Zahid Rahman
  Let me correct myself it is one of the Oracle files but not tnsnames. You have to restart Oracle for it take effect.   Also if you increase the cache size I think that increases the speed.   This is only a trouble shoot because possibilities can be endless although I did come across a sim

Re: JSP JDBC bean doesn't seem to release cursor !?

2001-07-30 Thread Zahid Rahman
If memory serves me correctly   In the tnsnames file for oracle there is default cursor limit set to 50.   you need to increase the limit.   Zahid    - Original Message - From: Keith Kwiatek To: [EMAIL PROTECTED] Sent: Monday, July 30, 2001 9:32 PM Subject: JSP JDBC

JSP JDBC bean doesn't seem to release cursor !?

2001-07-30 Thread Keith Kwiatek
Hello,   I am running oracle 8.1.6, and the 1.5.2 orion server.   I am using connection pooling.   I am using a JSP page with a jdbc java bean.   Everything works fine, except if I execute about 40-50 rapid executions of the JSP page, I run out of cursors.   I have rs.close, stmt.close comman

Re: No Cache on JSP Page

2001-07-30 Thread Pepper, Josh
-Original Message- From: Conyers, Dwayne [mailto:[EMAIL PROTECTED]] Sent: Monday, July 30, 2001 1:21 PM To: [EMAIL PROTECTED] Subject: Re: No Cache on JSP Page Which meta tags are you using? ©¿©¬ = I made magic once. Now, the sofa is gone. http://www.dwaco

Re: No Cache on JSP Page

2001-07-30 Thread Conyers, Dwayne
Which meta tags are you using? ©¿©¬ = I made magic once. Now, the sofa is gone. http://www.dwacon.com ==To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL P

Re: No Cache on JSP Page

2001-07-30 Thread Duane Morse
Add a small amount of JavaScript to append a URL variable having a random number value each time the submit button is pressed. Duane Morse, Eldorado Computing Inc., Phoenix, Arizona -Original Message- From: Pepper, Josh [mailto:[EMAIL PROTECTED]] Sent: Monday, July 30, 2001 12:58 PM To:

No Cache on JSP Page

2001-07-30 Thread Pepper, Josh
Hey, all. Trying to prevent a login page from caching, and the usual meta-tags don't seem to be working. Anyone have any thoughts on this? "YOU connect the dots. YOU pick up the pieces." - Laurie Anderson Joshua Pepper Web Architect www.hsx.com 323-822-2460 [EMAIL PROTECTED] ===

Re: how to include spaces in jsp page?

2001-07-30 Thread Pete Freitag
just use   outside of <% %> like you would with HTML. putting it inside <%= %> tries to evaluate a variable named " " Pete Freitag ([EMAIL PROTECTED]) CFDEV.COM Web Developers Resources http://www.cfdev.com/ -Original Message- From: A mailing lis

Re: how to include spaces in jsp page?

2001-07-30 Thread Karau, Joe
sure just do this   It is already HTML, why put it in a code snippet. But if you REALLY want to just do this: <%="&bsp;"%> Joseph Karau Kingland Systems [EMAIL PROTECTED] 507-536-3629 AIM: jkara3629 -Original Message- From: srinivas puppala [mailto:[EMAIL PROTECTED]] Sent: Monday, Jul

how to include spaces in jsp page?

2001-07-30 Thread srinivas puppala
Hi All, I am trying to display some hierarchy in jsp. I am tryign to use   for spaces with <%=  %>. But it is not working. Can some guru guide me on how to get spaces in to the display from a jsp page ? TIA. srini _ Get your FREE d

Re: Unicode

2001-07-30 Thread Bommakanti, Vamsee
On the javascript try navigator.systemLanguage This should give u the language of the system. Thanks -Original Message-From: Sagar Pandit [mailto:[EMAIL PROTECTED]]Sent: Monday, July 30, 2001 11:44 AMTo: [EMAIL PROTECTED]Subject: Unicode Hello everybody, This is what I

Unicode

2001-07-30 Thread Sagar Pandit
Hello everybody, This is what I want to do : I type some text in an input element inside an HTML form in a JSP. I want to know if the typed text is typed in English or any other language. The data is posted to a servlet where I would do a request.getParameter("name"), which returns a string

No Subject

2001-07-30 Thread Haseltine, Celeste
naidu, The JDBC-ODBC bridge is really not sufficient for a production environment. For one thing, the bridge driver is NOT a multi-threaded driver, secondly it is a Type I driver (see Sun's site regarding the definitions of Type I thru Type IV drivers). You have to write your own classes to impl

signoff JSP-INTEREST

2001-07-30 Thread Venu Babu
signoff JSP-INTEREST

Re: Conditionally including jsp:include

2001-07-30 Thread Atilio Ranzuglia
Raj: you cannot include a servlet in this way. And you are using '/' and you don't provide '.class' at the end. you should try including it at translation time (<%@ include %>). Otherwise you can make instantiate one and call some method on it. Atilio Good luck --- "Rajehswar V. Rao" <[EMAI

Re: TagExtraInfo.getVariableInfo

2001-07-30 Thread Peter Pilgrim
Have you defined the methods "public void setName(String)" and "public void setType(String)" ? -- Peter Pilgrim "Putting PLEASE HELP ME! URGENT HELP! in the E-Mail Subject: Line, will probably lead to the opposite intention." << The Windows Trash Can >> * HOLIDAY WARNING