i can use create_pool to query data,but why can't i query the new data that i manually inserted #735
Answered
by
evgenybf
Ray8716397
asked this question in
Q&A
-
i can use create_pool to query data,but why can't i query the new data that i manually inserted? |
Beta Was this translation helpful? Give feedback.
Answered by
evgenybf
Dec 27, 2021
Replies: 1 comment 1 reply
-
@Ray8716397 Could you provide an example? I have a suspicion, that the new data you manually inserted is not committed (autocommit=False or you started a transaction and forgot to call |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Nothing4You
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@Ray8716397 Could you provide an example? I have a suspicion, that the new data you manually inserted is not committed (autocommit=False or you started a transaction and forgot to call
COMMIT
)