Re: [INTERFACES] ResultSet....

From: Constantin Teodorescu <teo(at)flex(dot)ro>
To: Robson Martins <robson(at)netalfa(dot)com(dot)br>
Cc: PostgreSQL Interfaces <pgsql-interfaces(at)postgreSQL(dot)org>
Subject: Re: [INTERFACES] ResultSet....
Date: 1999-07-21 14:08:06
Message-ID: 3795D446.569D45E7@flex.ro
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

First of all :

PLEASE, FIND A GOOD JAVA BOOK AND LEARN JAVA AND JDBC!
Also, download JDBC documentation from Sun and read it!
You will find all the information you need and even some examples.
This list is * NOT * intented to be used for Java (JDBC) training.

> Robson Martins wrote:
>
> Hello all, i want to make a select count(*) and set a variable with
> this value i''m using the command:
> rs = st.executeQuery("select count(*) from imoveis where imo_situ =
> 'venda' and imo_tipo = 'kiti'");
> total = rs;
> But this doesnt work!

Try total = rs.getInt(1);

Best regards,
--
Constantin Teodorescu
FLEX Consulting Braila, ROMANIA

In response to

Browse pgsql-interfaces by date

  From Date Subject
Next Message Eric Marsden 1999-07-21 14:18:20 Re: [INTERFACES] [ANN] pg.el v0.2 -- Emacs Lisp interface to PostgreSQL
Previous Message Thomas Lockhart 1999-07-21 13:53:24 Re: [INTERFACES] [ANN] pg.el v0.2 -- Emacs Lisp interface to PostgreSQL