OK,

Now this is what I hate most on this list.
This is just a stupid, plainly wrong answer to a very basic question.

About everything in the answer is incorrect.
| is both a boolean and a bitwise operator, so that's certainly NOT the
problem.
You might use the || operator, but it won't solve anything.

The problem is that you use assignment '=' instead of equality test '=='

Geert

> -----Original Message-----
> From: A mailing list about Java Server Pages specification and reference
> [mailto:[EMAIL PROTECTED]]On Behalf Of Peter Bishop
> Sent: vrijdag 16 februari 2001 18:21
> To: [EMAIL PROTECTED]
> Subject: Re: Can't convert int to boolean. ??
>
>
> I think you want to use the conditional OR operator || , not the
> bitwise OR
> operator |
>
> -----Original Message-----
> From: sufi malak [mailto:[EMAIL PROTECTED]]
> Sent: Friday, February 16, 2001 12:09 PM
> To: [EMAIL PROTECTED]
> Subject: Can't convert int to boolean. ??
>
>
> what's wrong with this if statment :
>
> Can't convert int to boolean.
> <%
> String  imageurl = (String)request.getParameter("txtImageURL");
> String  lastname = (String)request.getParameter("txtLastName");
> String  firstname = (String)request.getParameter("txtFirstName");
> String  id = (String)request.getParameter("txtId");
> String  phone = (String)request.getParameter("txtPhone");
> String  date = (String)request.getParameter("txtDate");
> String  department = (String)request.getParameter("txtDept");
> String  extension = (String)request.getParameter("txtExt");
> String  email = (String)request.getParameter("txtEmail");
> String  note = (String)request.getParameter("txtNotes");
> String  nominatedby = (String)request.getParameter("txtNominatedby");
>
> %>
> <%
> Driver DriverResults =
> (Driver)Class.forName(MM_connCompass_DRIVER).newInstance();
> Connection ConnResults =
> DriverManager.getConnection(MM_connCompass_STRING,MM_connCompass_U
> SERNAME,MM
> _connCompass_PASSWORD);
> PreparedStatement StatementResults;
> String stmt = "insert into employee VALUES(id, firstname, lastname,
> nominatedby, photo, extension, department, note, phone, email, date)";
> StatementResults = ConnResults.prepareStatement(stmt);
> if (!((imageurl =null) | (lastname =null) | (firstname =null) |
> (id  =null)
> | (phone  =null) |
>    (department =null) | (date  =null) | (extension =null) |
> (email =null) |
> (note =null) | ( nominatedby =null) ))
> StatementResults.executeQuery();
>
> %>
>
> Thanks
> _________________________________________________________________
> Get your FREE download of MSN Explorer at http://explorer.msn.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://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
>
> ==================================================================
> =========
> 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://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
>

===========================================================================
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://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to