How to fetch large data from mssql database in python?
Answers
Answered by
0
Answer:
You have to use a fetch method along with cursor. For Example for row in cursor.fetchall(): print('row = %r' % (row, )).
Similar questions