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.

This is my code and I want to save date into my database and want to get saved into list.
How do we can store date in database? how can we save date like int or String?

It is showing curly red line below "datePickerBtn1", "datePickerBtn2", "datePickerBtn3". I have used button to show date dialogs but I want to store date as text in list.

i am trying to make Notepad or task reminder.

case R.id.savebutton:
    String subject = editsubject.getText().toString();
    String description =editdescription.getText().toString();
    int created = datepickerbtn1.getText().toString();        //save into database and get list
    int due = datepickerbtn2.getText().toString();
    int completed = datepickerbtn3.getText().toString();**

    if(!subject.equals("") || !description.equals("")) {
        Database_List db = new Database_List(this);
        db.addList(subject, description, created, due, completed );
    }

break;
share|improve this question
In database you can save the date with the help of DATE FIELD and if you want to use it in your Android code then you can easily convert it to string. – Sam-In-TechValens Dec 25 '12 at 7:04
And how to save date in database int created = datepickerbtn1.getText().toString(); – Shweta Dec 25 '12 at 7:09
Shweta, its not essential to save the dates in DATE FIELD only, You can save dates in String form as you are already getting it in String Formate... – Sam-In-TechValens Dec 25 '12 at 7:13
See Changdeo answer the same what I said....so problem solved I think:) – Sam-In-TechValens Dec 25 '12 at 7:16
Oh Yes, Thanks. – Shweta Dec 25 '12 at 7:39

1 Answer

I was wondering how could you compile your code with these lines in code

int created = datepickerbtn1.getText().toString();        //save into database and get list
    int due = datepickerbtn2.getText().toString();

Please change this to

String created = datepickerbtn1.getText().toString();        //save into database and get list
    String due = datepickerbtn2.getText().toString();

And you can store date as string or as DATE field. For simplicity store is as String.

share|improve this answer
hi, yes. Thanks. But it showing error force close. – Shweta Dec 25 '12 at 7:38
Please post crash log – Changdeo Jadhav Dec 25 '12 at 7:58

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.