Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8205145
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T08:07:28+00:00 2026-06-07T08:07:28+00:00

I am working on business analytics application, where I need to fetch some data

  • 0

I am working on business analytics application, where I need to fetch some data on per hour basis of a particular month. for example I wanna get the data from jun 01 2012 to jun 30 2012 and I need to fetch the data of every hour between those days.
Like 12:00 13:00,13:00-14:00 ….etc.

How do I do it. Kindly let me know. Using 1.8.7 platform.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T08:07:33+00:00Added an answer on June 7, 2026 at 8:07 am

    If you are using Rails there is a Date method step: http://corelib.rubyonrails.org/classes/Date.html#M001273


    On pure ruby just write simple loop:

    t=Time.new(2012,01,01,0,0,0) #start time
    max_time=Time.new(2012,01,31,23,59,59) #end time
    step=60*60 #1hour
    while t<=max_time
         p t #your code here
         t += step
    end
    

    To simplify use this ruby extension:

    module TimeStep
    
      def step(limit, step)  # :yield: time
        t = self
        op = [:-,:<=,:>=][step<=>0]
        while t.__send__(op, limit)
           yield t
           t += step
        end
        self
      end
    end
    
    Time.send(:include, TimeStep) #include the extension
    

    Usage:

    t=Time.new(2012,01,01,0,0,0)
    t.step(Time.new(2012,01,31,23,59,59),3600) do |time|
      puts time
    end
    

    You can also down-iterate:

    t=Time.new(2012,01,31)
    t.step(Time.new(2012,01,1),-3600) do |time|
       puts time
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working on a web-based business application where each customer will need to have
I am working with some business objects that relate to one another through their
I'm working on a business application built upon PHP & Dojo tool kit. The
I am currently working on a silverlight business application, so I have come across
Currently working on a Spring 2.5 web application, looks as if the business has
I am working on a CMS system for my business, and need to be
We are working on a large legacy application and we're redesigning the business layer
Am working on a business layer for a complex web application and am temporary
I am working on a business application which is being developed from scratch. We
I am working with a Silverlight business application that is using Windows Authentication. When

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.