Python เบื้องต้นสำหรับฐานข้อมูล
Jason Myers
Co-Author of Essential SQLAlchemy and Software Engineer
fetchmany() ให้ระบุจำนวนแถวที่ต้องการดึงได้fetchmany() ได้ResultProxy หลังใช้งานwhile more_results:partial_results = results_proxy.fetchmany(50)if partial_results == []: more_results = Falsefor row in partial_results: state_count[row.state] += 1results_proxy.close()
Python เบื้องต้นสำหรับฐานข้อมูล