You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
results = con.execute(text('select * from actor'))
102
+
# Print results
103
+
print(results)
104
+
```
105
+
106
+
91
107
Function *execute* make a request to a database and *fetchall* method get our results from an executed query. But in this case we don't use ORM propertis. More correctly is use structur:
0 commit comments