autocommit = getattr(self.conn, "autocommit", None)
if autocommit is not None and autocommit != getattr(
sqlite3, "LEGACY_TRANSACTION_CONTROL", -1
):
> raise TransactionError(
"sqlite-utils requires a connection that uses the default "
"transaction handling - connections created with "
"autocommit=True or autocommit=False are not supported"
)
E sqlite_utils.db.TransactionError: sqlite-utils requires a connection that uses the default transaction handling - connections created with autocommit=True or autocommit=False are not supported
This command:
Fails like this:
Since: d302835