If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Other > Selecting rows in chunk

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 08-26-11, 02:37
manik019 manik019 is offline
Registered User
 
Join Date: Mar 2009
Location: New Delhi - India
Posts: 22
Selecting rows in chunk

Hi,
I have an sqlite table containing 1 million records. The rows get inserted and deleted randomly. During start -up of my application, I need to fill the database in my data structures. How can I pick up the rows in chunks of 10000. I dont want to delete the rows from sqlite table in this start up.
Reply With Quote
  #2 (permalink)  
Old 08-26-11, 06:32
tosa tosa is offline
Registered User
 
Join Date: Feb 2010
Posts: 35
I'm not sure if this is what you meant, but if you want to select the first 10000 rows in a table you could go with "SELECT * FROM table LIMIT 10000" and for the following 10000 rows "SELECT * FROM table LIMIT 10000 OFFSET 10000".
Reply With Quote
  #3 (permalink)  
Old 08-28-11, 12:23
manik019 manik019 is offline
Registered User
 
Join Date: Mar 2009
Location: New Delhi - India
Posts: 22
I want to do the below( Lets say the table has 10000 rows. I want to read all the rows in chunks) :

Read 2000 rows
increase some counter
read next 2000 rows
increase some counter .. and so on..

I want to do this in a loop.
Can it be done by changing values in limit and offset.

Thanks
Reply With Quote
  #4 (permalink)  
Old 08-29-11, 02:36
tosa tosa is offline
Registered User
 
Join Date: Feb 2010
Posts: 35
I guess it can be done in a loop with variables for limit and offset, and maybe you need to count the rows first to know how much looping is required. I don't know how it handles errors when the offset is maxed.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On