You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I always liked sqlite for unit testing. The memory mode is great if you can't mock everything or if your application is heavy on complex SQL queries.
However, there is one thing where I failed. Our applications use migration scripts like most others use. Changing an existing column happens fairly often, but this is where sqlite fails. Alter column support is limited. We can add a column, bit that's pretty much it.
Better SQL support would make me switch right away.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I always liked sqlite for unit testing. The memory mode is great if you can't mock everything or if your application is heavy on complex SQL queries.
However, there is one thing where I failed. Our applications use migration scripts like most others use. Changing an existing column happens fairly often, but this is where sqlite fails. Alter column support is limited. We can add a column, bit that's pretty much it.
Better SQL support would make me switch right away.
Beta Was this translation helpful? Give feedback.
All reactions