Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How i can get today's data from sqlite database using objective c? I use this query but it returns all data from database:

const char *sql = "select * from SavedD where julianday('now')";

Please help me to retrieve today's data only.

share|improve this question

1 Answer

Try This

NSDateFormatter* formatter = [[[NSDateFormatter alloc] init] autorelease];            
//Set the required date format 
[formatter setDateFormat:@"dd-MM-yyyy"];
NSString* cCurrentTimeStamp = [formatter stringFromDate:dDate]; 
NSString *cPrevTimeStamp=[NSString stringWithFormat:@"%@ 00:00 AM",cCurrentTimeStamp];
NSString *cNextTimeStamp=[NSString stringWithFormat:@"%@ 23:59 PM",cCurrentTimeStamp];
const char *sqlStatement="SELECT * from _tablename where iAgentId=? and dScheduleTIme BETWEEN ? and ?";

or if you are using any other formatter then append that type formatter time to prev & next timestamp

share|improve this answer
Thank you svrushal, I solve my problem by using this query and display today's data const char *sql = "select * from SavedD where DateADndTime = date('now')"; – Fad Nov 26 '12 at 14:20
How I can display data for each day independently in Table View? I use this query but it returns failed data const char *sql = "select * from SavedD where DateADndTime = ?"; – Fad Nov 26 '12 at 14:25
Instead of ? can you use date('?')then append date in yyyy-MM-dd format to it.ex.date('2012-11-27') – svrushal Nov 27 '12 at 4:20
I used this query to display date in Table View const char *sql = "select * from SavedD where (datetime('now','-7 day')) GROUP BY DateADndTime ORDER BY DateADndTime"; How I can show the related data for every date in the group? – Fad Nov 28 '12 at 9:12
How I can call every row in table view different method to display it in other table view? i use switch but its remain in case 0 for every row. – Fad Nov 29 '12 at 10:00
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.