We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The executemany method of SqlliteMultiThread just repeatedly calls its own execute, queuing individual execute calls.
execute
It should be straightforward to push an "executemany" op onto the thread and call executemany on those requests.
executemany
The text was updated successfully, but these errors were encountered:
Sample implementation:
try: if req == '--many--': cursor.executemany(arg[0], arg[1]) else: cursor.execute(req, arg) except Exception as err:
with a corresponding executemany definition:
def executemany(self, req, items): self.execute('--many--', (req, items))
Sorry, something went wrong.
No branches or pull requests
The executemany method of SqlliteMultiThread just repeatedly calls its own
execute
, queuing individual execute calls.It should be straightforward to push an "executemany" op onto the thread and call
executemany
on those requests.The text was updated successfully, but these errors were encountered: