I am using sqlite (v2.6.0) as database backend and using sqlalchemy(v0.7.9) to operate it.
Recently I got a error OperationalError: (OperationalError) database is locked
By searching stackoverflow a possible solution is to increase the timeout of a connection. Referece: OperationalError: database is locked
But I don't know how to did that in sqlalchemy (since connection are actually controlled by it) Can someone give me a direction?