WG: JDBC 2.0 Scrollable Result Sets -- Slightly going mad --

From: "Knud Alex Mueller" <k(dot)mueller(at)portrix(dot)net>
To: <pgsql-jdbc(at)postgresql(dot)org>
Subject: WG: JDBC 2.0 Scrollable Result Sets -- Slightly going mad --
Date: 2001-04-05 17:30:55
Message-ID: NEBBIFELPDEINLGFJBFNEEGKCCAA.k.mueller@portrix.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

-----Ursprüngliche Nachricht-----
Von: kalexm [mailto:kalexm(at)gurusoft(dot)de]
Gesendet: Donnerstag, 5. April 2001 18:31
An: pgsql-jdbc(at)postgresql(dot)org
Betreff: JDBC 2.0 Scrollable Result Sets -- Slightly going mad --

Hi,
I'm new in the List. Hopefully Im at the right place for my question.

We use Tomcat 3.2., J2EE and J2SE on RedHat 7

We Set up a Postgres 7.0.3 with jdbc7.0-1.2.jar. Classpath is correct.

The Code looks like that

Class.forName(context.getInitParameter("ClassForName"));
url = context.getInitParameter("url");
dataBaseUserId = context.getInitParameter("dataBaseUserId");
dataBasePassWord =
context.getInitParameter("dataBasePassWord");
Connection con = DriverManager.getConnection(url,
dataBaseUserId, dataBasePassWord);
Statement stmt1 =
con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,
ResultSet.CONCUR_READ_ONLY);

It worked fine with my development Plattform using JDBC-ODBC Bridge on
SQL-SERVER 7.0 as well as ACCESS 2000. Now deployed on the Linux machine the
exception is returned, that the function is not implemented.

I use rs.last();rs.absolute();rs.next();rs.getRow();

What can I do ?

Thanks in advance:

Knud Müller

Responses

Browse pgsql-jdbc by date

  From Date Subject
Next Message Raghunath T 2001-04-06 06:58:23 RE: How connect JDBC
Previous Message kalexm 2001-04-05 16:31:00 JDBC 2.0 Scrollable Result Sets -- Slightly going mad --