<?xml version="1.0" encoding="UTF-8"?>











<rss version="2.0" xmlns:jf="http://www.jivesoftware.com/xmlns/jiveforums/rss">



<channel>
    <title>Support Forums: Message List - Scrollable results sets for 100,000+ rows...</title>
    <link>http://www.theserverside.com</link>
    <description>Most recent forum messages</description>
    <language>en</language>
    
        <generator>Jive Forums Silver 5.5.30 (www.jivesoftware.com)</generator>
    
    <pubDate>Thu, 23 May 2013 12:48:39 -0400</pubDate>


    <item>

        <title>Re: setFecthSize()</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=25625</link>

        

        
            <description><![CDATA[why do you think that it works that way?...]]></description>
        

        <pubDate>Tue, 29 Aug 2006 20:12:17 -0400</pubDate>

        

        <jf:creationDate>Tue, 29 Aug 2006 20:12:17 -0400</jf:creationDate>
        <jf:modificationDate>Tue, 29 Aug 2006 20:12:17 -0400</jf:modificationDate>
        <jf:date>Aug 29, 2006</jf:date>
        <jf:author>Abhinav Arora</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>Scrollable results sets for 100,000+ rows...</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=25625</link>

        

        
            <description><![CDATA[There is no db-independant way around this, unless you run the entire query each time and grab only the chunk of rows each time by maintaining an offset. I wish there was an attempt at some standardization in this area in the JDBC specs.<br><br>Does...]]></description>
        

        <pubDate>Fri, 30 Apr 2004 12:42:33 -0400</pubDate>

        

        <jf:creationDate>Fri, 30 Apr 2004 12:42:33 -0400</jf:creationDate>
        <jf:modificationDate>Fri, 30 Apr 2004 12:42:33 -0400</jf:modificationDate>
        <jf:date>Apr 30, 2004</jf:date>
        <jf:author>me havename</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>setFecthSize()</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=25625</link>

        

        
            <description><![CDATA[java.sql.Statement has a &quot;public void setFetchSize(int rows)&quot; method. I am looking at the javadocs for JDK 1.4]]></description>
        

        <pubDate>Fri, 30 Apr 2004 12:37:56 -0400</pubDate>

        

        <jf:creationDate>Fri, 30 Apr 2004 12:37:56 -0400</jf:creationDate>
        <jf:modificationDate>Fri, 30 Apr 2004 12:37:56 -0400</jf:modificationDate>
        <jf:date>Apr 30, 2004</jf:date>
        <jf:author>me havename</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>setFecthSize()</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=25625</link>

        

        
            <description><![CDATA[Just because you have a ResultSet <i>object</i> does not mean that object is populated with all of the database data for the query. Modern JDBC drives will &quot;lazy-load&quot; data in chunks from the database as you step through the ResultSet. The...]]></description>
        

        <pubDate>Fri, 30 Apr 2004 10:18:39 -0400</pubDate>

        

        <jf:creationDate>Fri, 30 Apr 2004 10:18:39 -0400</jf:creationDate>
        <jf:modificationDate>Fri, 30 Apr 2004 10:18:39 -0400</jf:modificationDate>
        <jf:date>Apr 30, 2004</jf:date>
        <jf:author>Paul Strack</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>setFecthSize()</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=25625</link>

        

        
            <description><![CDATA[I thought that you can only call setFetchSize() after the result set has returned because the method is on the ResultSet interface. You need a result set first before you call the method, don't you?]]></description>
        

        <pubDate>Fri, 30 Apr 2004 09:26:34 -0400</pubDate>

        

        <jf:creationDate>Fri, 30 Apr 2004 09:26:34 -0400</jf:creationDate>
        <jf:modificationDate>Fri, 30 Apr 2004 09:26:34 -0400</jf:modificationDate>
        <jf:date>Apr 30, 2004</jf:date>
        <jf:author>Raffi Basmajian</jf:author>
        <jf:replyCount>3</jf:replyCount>
    </item>


    <item>

        <title>Scrollable results sets for 100,000+ rows...</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=25625</link>

        

        
            <description><![CDATA[ResultSet is a database cursor, The result of the query will be stored in database as some kind of temp tables and the driver returns the pointer from the first record. When you iterate the result set, it will fetch one record at a time.<br><br>If you...]]></description>
        

        <pubDate>Fri, 30 Apr 2004 07:43:12 -0400</pubDate>

        

        <jf:creationDate>Fri, 30 Apr 2004 07:43:12 -0400</jf:creationDate>
        <jf:modificationDate>Fri, 30 Apr 2004 07:43:12 -0400</jf:modificationDate>
        <jf:date>Apr 30, 2004</jf:date>
        <jf:author>Senthil Chinnaiyan</jf:author>
        <jf:replyCount>1</jf:replyCount>
    </item>


    <item>

        <title>Scrollable results sets for 100,000+ rows...</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=25625</link>

        

        
            <description><![CDATA[Why do you think you can set fetch size after the RS has returned?<br><br>All databases have a default buffer size or tuple size that is sent. Unless you specify stmt.setFetchSize(), the driver will fetch the default tuple size (for example, in Informix,...]]></description>
        

        <pubDate>Thu, 29 Apr 2004 23:36:54 -0400</pubDate>

        

        <jf:creationDate>Thu, 29 Apr 2004 23:36:54 -0400</jf:creationDate>
        <jf:modificationDate>Thu, 29 Apr 2004 23:36:54 -0400</jf:modificationDate>
        <jf:date>Apr 29, 2004</jf:date>
        <jf:author>me havename</jf:author>
        <jf:replyCount>4</jf:replyCount>
    </item>


    <item>

        <title>Scrollable results sets for 100,000+ rows...</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=25625</link>

        

        
            <description><![CDATA[Try Reference Cursor if you are working with Oracle. I do not remember if it is part of SQL92 or any standard.<br><br>Ravi]]></description>
        

        <pubDate>Thu, 29 Apr 2004 23:02:28 -0400</pubDate>

        

        <jf:creationDate>Thu, 29 Apr 2004 23:02:28 -0400</jf:creationDate>
        <jf:modificationDate>Thu, 29 Apr 2004 23:02:28 -0400</jf:modificationDate>
        <jf:date>Apr 29, 2004</jf:date>
        <jf:author>Ravi Srinivasan</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>Scrollable results sets for 100,000+ rows...</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=25625</link>

        

        
            <description><![CDATA[Scrollable resultsets are typically implemented with a database curser. The curser allows you to step through subsets of a table, which means that records will be retrieved gradually as you step through your ResultSet.<br><br>Most JDBC drivers use these...]]></description>
        

        <pubDate>Thu, 29 Apr 2004 20:41:51 -0400</pubDate>

        

        <jf:creationDate>Thu, 29 Apr 2004 20:41:51 -0400</jf:creationDate>
        <jf:modificationDate>Thu, 29 Apr 2004 20:41:51 -0400</jf:modificationDate>
        <jf:date>Apr 29, 2004</jf:date>
        <jf:author>Paul Strack</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>Scrollable results sets for 100,000+ rows...</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=25625</link>

        

        
            <description><![CDATA[If I create a scrollable result set like this....<br>Statement st = connection.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);<br><br>ResultSet rs = statement.executeQuery(&quot;Select * from products&quot;);<br><br>Let's...]]></description>
        

        <pubDate>Thu, 29 Apr 2004 14:56:27 -0400</pubDate>

        

        <jf:creationDate>Thu, 29 Apr 2004 14:56:27 -0400</jf:creationDate>
        <jf:modificationDate>Thu, 29 Apr 2004 14:56:27 -0400</jf:modificationDate>
        <jf:date>Apr 29, 2004</jf:date>
        <jf:author>Raffi Basmajian</jf:author>
        <jf:replyCount>9</jf:replyCount>
    </item>



</channel>
</rss>

