Saved Bookmarks
| 1. |
Which method is used to fetch all rows from the database table? |
|
Answer» Displaying all records using fetchall( ) The fetchall( ) method is used to fetch all rows from the database table result = cursor.fetchall( ) |
|