logo       


Re: JDBC3 and 7.4.1: msg#00199

Subject: Re: JDBC3 and 7.4.1
Ranjeet Kapur wrote:
Thanks, I just did a few experiments and found the same thing, that getFetchSize() was returning 0. Is there anything else I could use to achieve the same result, namely how many rows in the select ?? I am very new to DB programming that´s why I probably misread the documentation on getFetchSize().

Add a COUNT(*) to the query, if you can; then the count will appear as a column in your resultset.

Alternatively:

Statement stmt = connection.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);
  ResultSet rs = stmt.executeQuery(query);

  // Count rows.
  rs.last();
  int resultSetSize = rs.getRow();

  // Process actual resultset
  rs.beforeFirst();
  while (rs.next()) {
    // do stuff
  }

but this requires iterating over the resultset twice, and using TYPE_SCROLL_INSENSITIVE prevents the current driver from using cursors to incrementally fetch data, so you will have the entire resultset in memory on the Java side.

If you don't need the total count before processing the resultset, just count as you process each result row (then you don't need a TYPE_SCROLL_INSENSITIVE ResultSet, either).

-O

---------------------------(end of broadcast)---------------------------
TIP 7: don't forget to increase your free space map settings



Ruby Jobs
Java Jobs
Jobs in California
more...
what
job title, keywords
where
city, state, zip
jobs by job search
<Prev in Thread] Current Thread [Next in Thread>
Google Custom Search

Recently Viewed:
encryption.gpg....    ietf.rfc822/199...    freebsd.devel.i...    lang.haskell.li...    mail.squirrelma...    web.zope.plone....    yellowdog.gener...    text.xml.xalan....    recreation.phot...    kde.devel.educa...    hardware.bus.ca...    printing.ghosts...    voip.peering/20...    assembly/2006-0...    org.user-groups...    culture.interne...    network.i2p/200...    boot-loaders.ya...    xfree86.render/...    qnx.openqnx.dev...    jakarta.velocit...    user-groups.pal...   
Home | blog view | USPTO Patent Archive | advertise | OSDir is an inevitable website. super tiny logo

Free Magazines

Cisco News
Receive a free quarterly e-newsletter with exclusive articles on how Cisco IT uses its own products and solutions to enable the business.
subscribe

Systems Management News, the newspaper for IT systems administration and data center managers! Each issue of Systems Management News is chock-full of news and analysis to help you understand what's happening in your field.
subscribe

The Enterprise Newsweekly eWeek is the essential technology information source for builders of e-business.
subscribe

Oracle Magazine Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Oracle (NASDAQ: ORCL) is the world's largest enterprise software company.
subscribe

Total Telecom Total Telecom is "The Economist of the communications industry".
subscribe