我正在构建 C# 控制台应用程序以连接数据库并进行简单查询。
但是当我调试程序时,我得到了这个错误:
The type or namespace name 'Oracle' could not be found ( are you missing a using directive or an assembly reference? )
我需要使用:
using Oracle.DataAccess.Client;
我已经从 Oracle 站点下载了 ODAC 包。在里面我有安装批处理文件(我已经使用过它)但仍然没有。
我正在为 Windows 桌面使用 MS VS2012 Express。
添加参考时我应该包括什么文件?