Accessing MySQL from Rust Part II
Posted on by Bibhas Bhattacharya : mobiarch
In part 1 I discussed how to do basic query. In this article we will learn to do inserts and updates. We will continue to work with the PRODUCT table. Inserting Data We can insert data like this. The params macro makes it easy to supply named parameter values. Here drop in exec_drop() means no […]