Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have stored the date as string in sqlite database table. What i need i i have to retrieve the values which stored in last seven days. I have tried by using following but it doesn't showing any values.

My Database function

     public Cursor paymentWeek(Activity activity)
     {

       String[] from = { _PAYMENTID, NAME, REQUESTEDDATE, FROMAD, TOADD, EMAILBODYPAYMENT, AMOUNT};  

       SQLiteDatabase db = getReadableDatabase(); 

       String orderby = REQUESTEDDATE+" DESC";  

       Cursor cursor = db.rawQuery("select * from " + PAYMENTTABLE + " where " + REQUESTEDDATE + " BETWEEN "
       + "date('now')" + " AND " + "date('now','-7 days')", null);

       activity.startManagingCursor(cursor);

       return cursor;  
    }

Calling function

    Cursor week = db.paymentWeek(this);
               String[] weekly = new String[] { PaymentAppDataBase.REQUESTEDDATE,PaymentAppDataBase.PAYMENTNAME,PaymentAppDataBase.AMOUNT };
               int[] sevendays = new int[] { R.id.Date,R.id.Name,R.id.Amount };

               SimpleCursorAdapter weekcursor =
                    new SimpleCursorAdapter(this, R.layout.listview, week, weekly, sevendays);
                setListAdapter(weekcursor);
               db.close();

It would be helpful if you guys sort out this problem. I get stuck over here.

share|improve this question
1  
That's going to be tough but maybe somebody knows a way. Is it possible to change your database design? Storing dates in your database as millis (not strings) would make your life easier. – Roger Apr 9 '12 at 1:23
you can create an array of nos of days and use in for eg. select * from table where date in('4/8/2012','4/9/2012',....);is not efficient but will work with strings. – Vincent Apr 9 '12 at 3:53
Thanks for your comment... Ya i can change my db as millis.. It would be great if you give some tips how to do that because i am new to android programming... Thanks – Vino Apr 9 '12 at 7:55

1 Answer

up vote 1 down vote accepted

try Following query to get records for last week(7 days):

"select * from " + PAYMENTTABLE + " where " + REQUESTEDDATE + "DATE_SUB( CURDATE( ) ,INTERVAL 7 DAY ) AND CURDATE( )";
share|improve this answer
Thanks for your comment.. I have tried it but it shows 04-09 07:59:15.314: E/AndroidRuntime(314): android.database.sqlite.SQLiteException: near "7": syntax error: , while compiling: select * from paymentdetails where requesteddateDATE_SUB( CURDATE( ) ,INTERVAL 7 DAY ) AND CURDATE( ) – Vino Apr 9 '12 at 7:56

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.