0

我填充数据库列并在表视图中进行调整。我越来越CursorIndexOutOfBoundsError

这是我的代码:

while(rows.isValidRow())
{

date=rows.fieldByName('Date');

displaydate(date);

Ti.API.info(';'+date); 

 while( date==rows.fieldByName('Date') )
{


    intime=rows.fieldByName('StartTime');
    outtime=rows.fieldByName('EndTime');
    taskname=rows.fieldByName('TaskName');
    note=rows.fieldByName('Note');


    displayreport(intime,outtime,'',taskname,note); 

    Ti.API.info(';'+intime+';'+outtime+';'+taskname+';'+note);

    rows.next();        

}   
      rows.next();

}      


rows.close();
4

1 回答 1

0

你的样本太多了rows.next();。重新审视你是如何构建你的循环的。

于 2012-12-29T15:40:40.333 回答