I've not found an issue that might also have been introduced due to tighter security.
I have dbr.editable statements like:
SELECT 'dbr.editable', 'field_name', 'sp_DBR_posting_update', 'inPostHashCode=PostHashEncoded', 'inFieldType="text"', 'inFieldName="field_name"';
I do this so I can have one update routine for one form (vs one routine for each field!). Before updating to the latest myDBR version this worked perfectly for the last year+. Now it seems broken. What happens is an error something along the lines of:
(1064): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'NULL' at line 1
SQL: call sp_DBR_posting_update('username','my scrambled id==',null,null,'my value from form');
the 'null,null' shows it isn't picking up the static values like it did before. What can be done to fix this?