I am trying to store the number of row of the table "computers" this way:
with my_db.connect() as conn:
result = conn.execute(text("SELECT COUNT(id) FROM computers;"))
return result
But when I print "result" I get:
sqlalchemy.engine.cursor.LegacyCursorResult object
Any idea ?