IZennoTable table = project.Tables["Report"];
lock (SyncObjects.TableSyncer) {
string[] cells = table.GetRow(0).ToArray();
project.Variables["report_cat"].Value = cells[0];
project.Variables["report_url"].Value = cells[1];
project.Variables["report_item_name"].Value = cells[2];
project.Variables["report_item_price"].Value = cells[3];
project.Variables["report_base_price"].Value = cells[4];
project.Variables["report_date_updated"].Value = cells[5];
table.DeleteRow(0);
}