Basic Postgres Data in Rust

James Bowen
5 min readJul 20, 2020

For our next few articles, we’re going to be exploring some more advanced concepts in Rust. Specifically, we’ll be looking at parallel ideas from our Real World Haskell Series. In these first couple weeks, we’ll be exploring how to connect Rust and a Postgres database. To start, we’ll use the Rust Postgres library. This will help us create a basic database connection so we can make simple queries. You can see all the code for this article…

--

--