Luis Norambuena@programming.dev to SQLiteEnglish · 2 years agoUsing WAL mode in SQLite and its interaction with VACUUMblog.pecar.meexternal-linkmessage-square2linkfedilinkarrow-up17arrow-down10file-text
arrow-up17arrow-down1external-linkUsing WAL mode in SQLite and its interaction with VACUUMblog.pecar.meLuis Norambuena@programming.dev to SQLiteEnglish · 2 years agomessage-square2linkfedilinkfile-text
minus-squareperviouslyiner@lemm.eelinkfedilinkEnglisharrow-up1·2 years agoIs it necessary for programs to implement their own retry logic for when sqlite returns busy intead of success or failed code?
minus-squareLuis Norambuena@programming.devOPlinkfedilinkarrow-up1·2 years agoThe error you would get is a timeout. The easiest way to wait longer is increasing the timeout of your connection. I think the default value for a timeout is 5 seconds.
Is it necessary for programs to implement their own retry logic for when sqlite returns busy intead of success or failed code?
The error you would get is a timeout. The easiest way to wait longer is increasing the timeout of your connection. I think the default value for a timeout is 5 seconds.