Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error while get queue element by id #209

Open
L0stCluster opened this issue Feb 19, 2024 · 0 comments
Open

Error while get queue element by id #209

L0stCluster opened this issue Feb 19, 2024 · 0 comments

Comments

@L0stCluster
Copy link

I turn off auto_commit and trying get element by id.
I getting this traceback: sqlite3.ProgrammingError: Incorrect number of bindings supplied. The current statement uses 0, and there are 1 supplied.

Minimally reproducible example:

from persistqueue import SQLiteQueue

q = SQLiteQueue(path="queue", auto_commit=False)
queue_id = q.put("elemenent")
q.task_done()

print (queue_id)

queue_data = q.get(id=queue_id, raw=True)
q.task_done()

print(queue_data)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant