Moazam Raja wrote:

I have a JSP page which is trying to connect to a JDBC mySQL database but I keep getting this error when I try to compile:

------------------------------------------------
articles.jsp [19:7] Attribute select has no value
Errors compiling articles.
------------------------------------------------

<sql:query var="articles" dataSource="${dataSource}"
select * from Articles>
</sql:query>

You SQL statement goes in the *body* of the tag:


<sql:query var="articles" dataSource="${dataSource}">

select * from Articles

</sql:query>

HTH,
--
Hassan Schroeder ----------------------------- [EMAIL PROTECTED]
Webtuitive Design ===  (+1) 408-938-0567   === http://webtuitive.com

dream. code.




--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to