Error when I run my C# program that work's wit

2019-08-07 16:35发布

I Made Setup from my C# program (that work's with Oracle 10g)

when I try to run this program - in different Computer, i got this error message:

unable to load dll 'OraOps10.dll'

what it can be ?

thank's in advance

标签: c# oracle10g
4条回答
啃猪蹄的小仙女
2楼-- · 2019-08-07 16:54

If you're using the Oracle ODP (Oracle.DataAccess.Client) and not the default Microsoft ODP (System.Data.OracleClient) then you have to download install the Oracle Data Access Compontents before you can use it. So installing the ODAC must be the part of your deployment process.

查看更多
Summer. ? 凉城
3楼-- · 2019-08-07 16:54

Either Oracle is not installed or the oracle dll can't be found for some reason.

查看更多
相关推荐>>
4楼-- · 2019-08-07 17:00

I've came across this and various Oracle errors before. It is usually an authorization issue, provided that of course, Oracle is installed and configured correctly.

Locate the 'ORACLE_HOME' folder, right click and set the security settings. Make sure the SYSTEM account has permission to Read & Execute the files in the folders and all subfolders and files. If you're accessing Oracle from a web application, do this for the ASP.NET user.

For more information see also: http://forums.oracle.com/forums/thread.jspa?threadID=67364

查看更多
三岁会撩人
5楼-- · 2019-08-07 17:04

Maybe, just maybe, oracle isn't installed on this 'different Computer'?

查看更多
登录 后发表回答