ORA-01005 error connecting with ODP.Net

前端 未结 3 1018
北恋
北恋 2021-01-20 16:50

I am trying to access an Oracle database (version 10.2.0.4.0) using the following code but an \"ORA-01005: Null password given; logon denied\" exception is raised by the con

3条回答
  •  面向向阳花
    2021-01-20 17:16

    The issue with case sensitivity and the ODP.Net drivers and different DB versions should be a simple fix. Enclose your connectionstring password in quotes(") such as Password=\"password\"; and this should keep the password case

提交回复
热议问题