I have created a lower-case schema and user, Oracle 18c.
I can connect as this user in SQL developer by quoting the username (to prevent upper-casing), however it seems when I attempt to emulate this in my connection string, dotConnect always attempts to upper-case the user (confirmed via audit logs).
Is there a way to prevent dotConnect from upper casing the user ID parameter in the connection string?
Cheers!
Lower case User Id in ConnectionString
Re: Lower case User Id in ConnectionString
Try this way:
Code: Select all
conn.ConnectionString = "...; User Id=\"lowerCaseName\"; ...";
Re: Lower case User Id in ConnectionString
Thanks Shalex ! That seems to work fine !