• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Problem : accessing record from a cursor returned from postgresql

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I have written a stored function in postgreSQL which returns a cursor and trying to access the records of the RecordSet using jdbc callable statements. The result is that it is not displaying anything and the resultset seems to be empty. kindly please guide me as how to approach to achieve the said task. My code looks like this

stored function
---------------
CREATE or REPLACE FUNCTION doQuery(refcursor) RETURNS refcursor AS '
DECLARE
ref refcursor;
BEGIN
open $1 for select * from test;
RETURN $1;
END;
' LANGUAGE plpgsql;

Client Application
------------------
private void listData() {
String cur_name="funccursor";
try {
CallableStatement cst = c.prepareCall("{?=call doQuery(?)}");
cst.registerOutParameter(1, Types.OTHER);
cst.setString(2,cur_name);
cst.execute();
rs = (ResultSet) cst.getObject(1);
while (rs.next()) {
log(rs.getString("name"));
}
} //try
rs.close();
cst.close();
log("Records Retrieved Successfully");
} catch (SQLException sqle) {
log(sqle.getMessage());
log("Error while retrieving Records");
}
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
"Kumar JC",

We're pleased to have you here with us on the Ranch, but there are a few rules that need to be followed, and one is that proper names are required. Please take a look at the JavaRanch Naming Policy and adjust your display name to match it.

In particular, your display name must be a first and a last name separated by a space character, and must not be obviously fictitious.

Thanks!
bear
Forum Bartender
reply
    Bookmark Topic Watch Topic
  • New Topic