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_USERNAME,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

Reply via email to