-
Hi everyone, I am trying to use trino-python-client to create, update and insert into a table. |
Beta Was this translation helpful? Give feedback.
Answered by
ebyhr
Oct 3, 2022
Replies: 1 comment 1 reply
-
Did you put cur.execute('INSERT INTO sometable VALUES (4, 5, 6)')
cur.fetchall() |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
yuokada
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Did you put
fetchall()
afterexecute()
method? e.g.