データベースの列にデータを入力し、テーブル ビューで表示します。私は得て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();