[GENERAL] Is postgresql 8.xx jdbc support SCROLL_SENSITIVE?

2005-05-18 Thread Hengki Suhartoyo
Hi, all I have problem with my jdbc program, my java program can't use TYPE_SCROLL_SENSITIVE. But I need Sensitive scrollable result. Can anybody help me? this is my java test program, /* * testRS.java * * Created on May 16, 2005, 9:48 PM */ import java.sql.*; public class testRS {

Re: [GENERAL] Is postgresql 8.xx jdbc support SCROLL_SENSITIVE?

2005-05-18 Thread Kris Jurka
On Wed, 18 May 2005, Hengki Suhartoyo wrote: I have problem with my jdbc program, I need Sensitive scrollable result. Postgresql only supports insensitive cursors and ResultSets. Your only option is to reissue the query to pick up any changes. Kris Jurka ---(end