Roundup Tracker - Issues

Issue 2551302

classification
Remove support for sqlite version 1 from back_sqlite.py
Type: behavior Severity: minor
Components: Database Versions:
process
Status: new remind
:
: : rouilj
Priority: : Effort-Low, StarterTicket

Created on 2023-11-21 04:00 by rouilj, last changed 2023-11-25 19:48 by rouilj.

Messages
msg7864 Author: [hidden] (rouilj) Date: 2023-11-21 04:00
This includes:

 ...
 import sqlite as final fallback on import error

 if sqlite_version in (2, 3):
    arg = '?'
 else:
    arg = '%s'


 Removing self.sqlite_busy_handler and it's invocation

look for other checks against sqlite_version and eliminate sqlite 1 cases.
Also consider removing tests that match (2, 3) and just running the code
without an if test.

This cleans up untested code that is not usable these days.
History
Date User Action Args
2023-11-25 19:48:10rouiljsetresolution: remind
2023-11-21 04:00:14rouiljsetkeywords: + StarterTicket
2023-11-21 04:00:04rouiljcreate