I use pymysql in my project , and need use_result to fetch rows? There is a fetchmany function in pymysql . Is it the same as use_result ?
|
feedback
|
|
mysql_use_result() + mysql_fetch_row() is used in mysql to fetch the data 1 row at a time and store it client side. You can read this for an example of each. | |||||
feedback
|