I am trying to use to insert into the table but got the exception that array index out of bounds ?
Please give me the idea how to do that and where is I am making mistake? I have tried many conversion but doesn't get succeeded.
Following is the code
Object[]param={ID,name,Fathername,Address,Mob,Gender,Qualification};
try{
db=Display.getInstance().openOrCreate("students.db");
db.execute("insert into clStudent values('?','?','?',?,'?','?','?')", (Object[]) param) ;