Re: jdbc taglib problem

2001-04-03 Thread Warner Onstine
To clarify it appears to be dying at this line: try { Connection conn = (Connection)pageContext.getAttribute(_connId); _statement = conn.createStatement(); pageContext.setAttribute(getId(), _statement); } catch (SQLException e) { throw new JspTagException(e.toString())

jdbc taglib problem

2001-04-03 Thread Warner Onstine
Hi all, I am having a problem using the jdbc taglib. After following the docuemntation I am still receiving this error: -- Root Cause: java.lang.NullPointerException at org.apache.taglibs.jdbc.statement.StatementImplTag.doStartTag(StatementImplT ag

Re: Passing params to xsl-stylesheet

2001-04-03 Thread Aaron Oathout
I know you can pass parameters with the transform taglib from http://www.epesh.com/transformtags.jsp I'm not for sure if you can pass parameters with the jakarta tags. Aaron On Tue, 3 Apr 2001, Pier Paolo Bortone wrote: > Hi all, > I need to pass params to the xsl. > > Can actual XSL TAGLIB

Re: Passing params to xsl-stylesheet

2001-04-03 Thread Joseph B. Ottinger
Mine can - see http://epesh.com/transformtags.jsp On Tue, Apr 03, 2001 at 05:16:21PM +0200, Pier Paolo Bortone wrote: > Hi all, > I need to pass params to the xsl. > > Can actual XSL TAGLIB to do it? > > I haven't found like to do it. > > Thanks. > > Pier Paolo. --

Passing params to xsl-stylesheet

2001-04-03 Thread Pier Paolo Bortone
Hi all, I need to pass params to the xsl. Can actual XSL TAGLIB to do it? I haven't found like to do it. Thanks. Pier Paolo.

Re: Stored procedure

2001-04-03 Thread Omar Diego Vera Ustariz
Try to do this. I hope this ca help you. CallableStatement callStmt=m_conn.prepareCall("{call ?:=test1(3) }"); callStmt.registerOutParameter(1,java.sql.Types.DOUBLE); ResultSet Rs=callStmt.executeQuery(); System.out.println("OUT "+callStmt.getDouble(1)); Omar Vera.

AW: JDBC-TagLib with JDBC-ODBC-Bridge?!

2001-04-03 Thread "Weßling, Achim"
Thanks Morgan, everything works fine! Your hint about the readonly-property make me thing about my odbc-setting. By default we creat all our odbc-connection as readonly, because of security. I did it also with the one I used for testing! It was really late when I did it! So evrything works fine,