RE: RE: newbie jsp question

2002-03-20 Thread Randy Layman
technical support with the issue. Randy -Original Message- From: Magnus Jansson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 20, 2002 3:14 AM To: [EMAIL PROTECTED] Subject: Ang: RE: newbie jsp question Well! I already have a connection to the database, I can extract

Ang: RE: RE: newbie jsp question

2002-03-20 Thread Magnus Jansson
that exhibits this problem and contact the vendor's technical support with the issue. Randy -Original Message- From: Magnus Jansson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 20, 2002 3:14 AM To: [EMAIL PROTECTED] Subject: Ang: RE: newbie jsp question Well! I

RE: newbie jsp question

2002-03-19 Thread Jeff Macomber
Jansson, You are going to need a JDBC driver for Interbase 6.5 first. Then I would recommend looking at the examples that come with the driver on how they handle insertion of BLOB data and escaping stored procedures. Hope this helps, Jeff -Original Message- From: Magnus Jansson

RE: newbie jsp question

2002-03-19 Thread Randy Layman
You will need to learn how to use JDBC to access databases. I would suggest either going to Sun's JDBC site or looking at Interbase. Once you know how to execute the stored procedure from regular Java, JSP is trivial. Randy -Original Message- From: Magnus Jansson

Ang: RE: newbie jsp question

2002-03-19 Thread Magnus Jansson
Well! I already have a connection to the database, I can extract information out from the database but when I use execute procedure commando I only get that very hard to debug error page from tomcat. here is a copy of it: java.lang.VerifyError: (class: interbase/interclient/ErrorKey, method:

Re: Newbie JSP Question:

2001-08-30 Thread Nirav S. Desai
Do you have a submit button. Peter L. Markowsky wrote: I know this doesn't relate to Tomcat directly, but since Tomcat hosts JSPs or at least is able I was wondering if anyone out there knew / could recommend how to pass values from one JSP page to another. The problem I'm having is that

Re: Newbie JSP Question:

2001-08-30 Thread Dmitri Colebatch
try request.setAttribute( ... ) in the first jsp and request.getAttribute( ... ) in the second. hth dim On Thu, 30 Aug 2001, Peter L. Markowsky wrote: I know this doesn't relate to Tomcat directly, but since Tomcat hosts JSPs or at least is able I was wondering if anyone out there knew /

Re: Newbie JSP Question:

2001-08-30 Thread Guilherme Zambon
Take care with the case sensitive. A way to see which parameters were passed is using a code like: %@ page import=java.util.*% html head /head body pre % Enumeration e = request.getParameterNames(); String s = new String(); while(e.hasMoreElements()) { s = (String) e.nextElement(); % The