esundberg
Results
2
comments of
esundberg
Yep it would be nice to have this feature
Something like this. ``` sql = "SELECT * FROM test WHERE broken_here ORDER BY variable ASC" async with self.conn.cursor() as cursor: try: await cursor.execute(sql, params) result = await cursor.fetchall() await...