InterviewSolution
Saved Bookmarks
| 1. |
insertId attribute returns ____________(a) column ID(b) row ID(c) user’s ID(d) database IDI have been asked this question in quiz.Origin of the question is Web Databases topic in division HTML Images & Web Page Files of HTML |
|
Answer» RIGHT answer is (b) row ID Easy EXPLANATION: insertId attribute returns the row ID of the row of the INSERTED SQLResultSet object’s SQL statement that is inserted into the DATABASE. If multiple rows are inserted then the ID of the LAST row will be returned. If there is no row then INVALID_ACCESS_ERR exception will be raised. |
|