Replies: 3 comments 2 replies
-
We don´t support this yet. I will fix. Can you provide some example of role use? Like a expected result when some role is used. |
Beta Was this translation helpful? Give feedback.
2 replies
-
Thank you! All works as expected. Throwed to prod :)) |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
My connection string is "firebird://user:pass@server:3050/control.gdb?encoding=WIN1250&&roleName=R_USER"
but RoleName not passed to connection. So I found fn build_dpb and patched with
{
let role_name = "R_USER".to_string();
dpb.extend(&[ibase::isc_dpb_sql_role_name as u8, role_name.len() as u8]);
dpb.extend(role_name.bytes());
}
Is there a valid way to pass RoleName to connection?
with builder_native().with_dyn_load("fbclient.dll")
Beta Was this translation helpful? Give feedback.
All reactions