Re: Methode is not yet implemented.

From: "Thomas O'Dowd" <tom(at)nooper(dot)com>
To: Jörg Sommer <Joerg(dot)Sommer(at)gmx(dot)de>
Cc: pgsql-jdbc(at)postgresql(dot)org
Subject: Re: Methode is not yet implemented.
Date: 2001-07-17 01:39:19
Message-ID: 20010717103919.A5321@beast.uwillsee.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

On Wed, Jul 11, 2001 at 08:43:51PM +0100, Jörg Sommer wrote:
> Hello!
>
> If I send a SELECT query to PostgreSQL from a JDBC connection of my
> programm about a lokal network I get this message:
> "This methode is not yet implemented."
>
> The SELECT query is very simple: SELECT * FROM <table>;
>
> I use S.u.S.E. 7.2. The driver and the PostgreSQL files are from this
> distribution.
>
> I can't believe that there is a "stable" driver that can't query simple
> SELECT...

We can't believe it either.

Send a java code segment. You're probably doing something wrong. It should
be something like...

...
java.sql.Statement stmt = con.createStatement();
java.sql.ResultSet rs = stmt.executeQuery("SELECT * from <table>");
...

Where con is an open connection to your database.

Also, try grabbing a driver from: http://jdbc.fastcrypt.com/

Cheers,

Tom.
--
Thomas O'Dowd. - Nooping - http://nooper.com
tom(at)nooper(dot)com - Testing - http://nooper.co.jp/labs

In response to

Browse pgsql-jdbc by date

  From Date Subject
Next Message Peter Eisentraut 2001-07-17 12:55:40 Re: Connection.setCatalog()
Previous Message jason 2001-07-16 23:34:21 Re: Connection.setCatalog()