Computer Science
The sql query upon execution via established database connection returns the result in multiple chunks.
Python MySQL
1 Like
Answer
False
Reason — When an SQL query is executed via an established database connection, the result is returned as a single result set. The result set may contain multiple rows of data, but it is presented as a single unit rather than in multiple chunks.
Answered By
1 Like
Related Questions
Fill in the blanks:
_________ method executes a database query from within Python.
With creation of a database connection object from within a Python program, a unique session with database starts.
The cursor.rowcount gives the count of records in the resultset.
The cursor.rowcount returns how many rows have been so far retrieved through fetch..() methods from the cursor.