Re: "Attribute select has no value" error

2004-02-08 Thread Moazam Raja
I found the solution...I had standard.jar in my WEB-INF/lib but I did not have jstl.jar in there. -Moazam Moazam Raja wrote: All, I changed the SQL statement syntax, but I get this error now when I try to compile.. articles.jsp [-1:-1] at java.lang.ClassLoader.defineClass0(Native Meth

Re: "Attribute select has no value" error

2004-02-08 Thread Moazam Raja
All, I changed the SQL statement syntax, but I get this error now when I try to compile.. articles.jsp [-1:-1] at java.lang.ClassLoader.defineClass0(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:537) .. Do I not have the myS

RE: "Attribute select has no value" error

2004-02-08 Thread Karr, David
Assuming you really did copy this directly from your code, the answer is clear right here: You didn't close the "sql:query" tag with a ">" character, but the "select" line ends with one. Thus, the JSP compiler would think that "select" is an attribute", but you gave it no value. Move the ">"

Re: "Attribute select has no value" error

2004-02-08 Thread Hassan Schroeder
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.