Re: boolean problem - Mailing list pgsql-jdbc

From Tony Grant
Subject Re: boolean problem
Date
Msg-id 1098190355.26709.31.camel@localhost.localdomain
Whole thread Raw
In response to Re: boolean problem  (Kris Jurka <books@ejurka.com>)
Responses Re: boolean problem  (Kris Jurka <books@ejurka.com>)
List pgsql-jdbc
Le lun 18/10/2004 à 21:18, Kris Jurka a écrit :

> > Postgresql 7.3.2 Mac OSX
> > Tomcat 4.1 Mac OSX
> >
> > My webapp is asking for a boolean and Postgresql is returning "t"
> > interpreted as a string by the application... I though that the JDBC
> > driver took care of little things like that?
> >
>
> It is entirely unclear what you are actually doing?  What ResultSet method
> are you using?  getBoolean, getString, getObject?  How about a couple
> lines of sample code that show what you are doing, what the result is, and
> what you expect the result to be?

<%
Driver Driverhowmanyworks =
(Driver)Class.forName(MM_frac_DRIVER).newInstance();
Connection Connhowmanyworks =
DriverManager.getConnection(MM_frac_STRING,MM_frac_USERNAME,MM_frac_PASSWORD);
PreparedStatement Statementhowmanyworks =
Connhowmanyworks.prepareStatement("SELECT count(*)=1 as works  FROM
oeuvre, cree_par, collection  WHERE oeuvre.oeuvre_id =
cree_par.oeuvre_id  AND cree_par.artiste_id = collection.individu_id AND
collection.nom ILIKE '%" + howmanyworks__varNom + "%'");
ResultSet howmanyworks = Statementhowmanyworks.executeQuery();
boolean howmanyworks_isEmpty = !howmanyworks.next();
boolean howmanyworks_hasData = !howmanyworks_isEmpty;
Object howmanyworks_data;
int howmanyworks_numRows = 0;
%>

And in the page

<% if ((((howmanyworks_data = howmanyworks.getObject("works"))==null ||
howmanyworks.wasNull())?"":howmanyworks_data)) { // Adv Conditional
Region %>

incompatible types
found   : java.lang.String
required: boolean

I have tried with boolean but to no avail

operator == cannot be applied to boolean,

Cheers

Tony Grant

--
www.tgds.net Library management software toolkit



pgsql-jdbc by date:

Previous
From: Markus Schaber
Date:
Subject: Re: Avoiding explicit addDataType calls for PostGIS
Next
From: "Bacchu, Anjan"
Date:
Subject: Re: FW: your post to pgjdbc-commit