Luis Norambuena@programming.dev to SQLite@lemmy.worldEnglish · 1 year agoUsing WAL mode in SQLite and its interaction with VACUUMblog.pecar.meexternal-linkmessage-square2fedilinkarrow-up17arrow-down10file-text
arrow-up17arrow-down1external-linkUsing WAL mode in SQLite and its interaction with VACUUMblog.pecar.meLuis Norambuena@programming.dev to SQLite@lemmy.worldEnglish · 1 year agomessage-square2fedilinkfile-text
minus-squareperviouslyiner@lemm.eelinkfedilinkEnglisharrow-up1·1 year 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·1 year 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.