打开连接时显示错误(oracle连接未打开)
错误 未处理的异常:System.DllNotFoundException:发生
答案 0 :(得分:1)
Don't connect to DB directly from a mobile device, that's not a good approach. I think it cant be done either because this DLL is not even available for mobile platforms.
Get the data from the database via REST services through a server. Check this article how to consume REST in Xamarin.Forms.
答案 1 :(得分:1)
Android和iOS应用程序无法连接到其自己的SQLite数据库之外的数据库。
为了使移动应用程序能够从Oracle数据库获取数据,需要使用任何流行的框架(例如ASP.NET,Express.js,Ruby on Rails,Django)创建REST后端,然后该应用程序可以与此服务进行通信。