I'm using MySQLdb for Python 3.6 to store some data in a database. I have avoided using cursors as per this discussion to avoid the performance hit. However, I am not seeing a good way to parameterize my data unless I use a cursor.
My question is: is there a way to parameterize data on a set based operation, or do I need to choose between using a cursor vs. sanitizing my own data?