Results 1383 comments of Vincent Prouillet

I just saw the reason why I didn't move the code to the lib, it has lots of `println!` in the middle which you don't want when using as a...

I guess the migrate macro could be turned into a function into dbmigrate-lib but the others cannot just be changed to a` Result` that easily. For example, `up` and `down`...

I don't use that crate myself but I will merge a good implementation of that issue

> Why you stop using it? I don't do anything database related right now with Rust. > You mean that I can contribute with PR? Yep!

Yep #38 is a great way to start. After that, the changes should not be THAT big.

#38 is just simplifying the code, not strictly required but it makes it easier to think about.

Looks like a good idea! I don't remember why the structs are that way to be honest.

I guess we could wrap the SQL execution in transactions. People can already add it in the SQL file themselves but that does get repetitive and error prone. I'll take...

That would be a good idea I think!

Does `rusqlcipher` build on mac/linux/windows?