Computer Science, asked by Deepika4006, 1 year ago

How to fetch large data from mssql database in python?

Answers

Answered by RewelDeepak
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