You are embedding JSP Tags within a Java Scriplet that is embedded in a JSP
Page.  Unfortunately this level of nesting is not supported.  You can design
your tags (using the TagExtraInfo) so that they create variables for you, or
you can directly call the JDBC routines from the Scriplet.
    (*Chris*)

----- Original Message -----
From: "Troy Campano" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, October 24, 2001 11:47 AM
Subject: [JSP-INTEREST] DBTAGS and variables


> I am trying to make a variable that uses a value that comes from DBTAGS.
>
>
> So when it loops through the recordset and gets the values from the
> database, I'd like to do something like this:
>
>
> <% String myvar;
>   myvar = <sql:getColumn position="1"/>;
> %>
>
>
> I have also tried:
>
>
>
>
> <% String myvar;
>   myvar = %><sql:getColumn position="1"/><%;
>
>   out.println(myvar)
>
>   %>
>
>
>
> Anyone have any ideas?
>
>
>
> [:==> Troy Campano <==:] - Roadwarrior on the Information Superhighway
> Request Manager/Database/Web
> 603 245 4092
> http://intranet2/reqman/
> http://intranet.lmig.com/infosys/infra/software/database/
> Microsoft gave you Windows, UNIX the whole house.
>
>
===========================================================================
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.com


_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com

Reply via email to