Leveling up: Adding SQLite Persistence to my Rust Guessing Game
rust
dev.to
Introduction I recently started my journey with Rust by following the famous "The Book" (The Rust Programming Language). After completing the Guessing Game tutorial, I decided to take it a step further by adding a way to record and save game results. The Project Initially, the game would forget everything once it closed. To fix this, I integrated SQLite so that every win is recorded permanently. What I Added Database Integration: Used the rusqlite crate to con