Results 6 comments of vanhry

@krlmlr Hope it helps, actually it should imitate the logic of my issue ``` CREATE TABLE `users_all` ( `username` varchar(36) DEFAULT NULL, `age` int DEFAULT NULL ) ``` ``` INSERT...

@krlmlr is my example above suitable for you as a reproducible example of my issue?

Sorry about this. It should work ```sql DELIMITER // CREATE PROCEDURE `GetUser` (in in_username VARCHAR(36)) BEGIN SELECT * FROM users_all WHERE username = in_username; END ```

@krlmlr is my example above proper for you?

> So the immediate problem is that the RMySQL solution uses functions that aren't available in RMariaDB? Yes, that's a problem. I don't want to use the deprecated RMySQL, but...

Thanks @mpadge, You helped me a lot!