InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between Next() And _next() Method? |
|
Answer» next() method is responsible to move to the next RECORD in GlideRecord. _next() provides the same functionality as next(), intended to be used in cases when we QUERY the table having a COLUMN NAME as next. next() method is responsible to move to the next record in GlideRecord. _next() provides the same functionality as next(), intended to be used in cases when we query the table having a column name as next. |
|