Hi Merhawie,
As i think in your code which doesn't work...the problem might be the
way of passing second argument....as i understood by your code 'docs'
is the array...so you are passing array under array..hence making 2d
array...so look out for that...pass either like db.execute("your
statement",docs); or db.execute("your statement",[docs[i]]);....i
think it might solve your problem...................
