This error means that there is no column named "name" in the table "test".
Maybe these two rows are the problem :
myRow["name"] = "John"; ' Should column name be "firstname"?
myRow["address"] = "Smith"; ' Put last name in address-column? Should
be "lastname"?
Verify that all the columns you access exists in the table.
Hope it helps
/Per Hultqvist