Possible Duplicate:
Error inserting in SQLite database
Hi............. I am new for Android, right now i am working with android database. I want to insert some hard-coded value in my database , by call a method.
public void insertdata(String ti, String de) {
ContentValues userdetailValues = new ContentValues();
userdetailValues.put("tick", ti);
userdetailValues.put("des",de);
dh.insert(DatabaseHelper.TABLE_NAME, null, userdetailValues);
}
Above method is define in a activity out on onCreate() block. When i am going to call this method within onCreate() block as
insetdata(aaa,bbb);
Then it show a error for me-
aaa can not be resolve to variable and same for bbb.
As i told that i am new for Android , and quite afraid, in that case if it is small issue , then please help me ,i am just a learner . Thanks in Advance to all.