下面的代码是连接数据库的:
public DataSet ExecuteDataSet(string sql)
{
   OracleConnection conn = new OracleConnection("data Source=wu;user id=wu2008;password=wu2008;");

   OracleDataAdapter dap = new OracleDataAdapter(sql,conn);   DataSet ds = new DataSet();   dap.Fill(ds);   return ds;
}
错误:
Unable to load DLL (oci.dll). 
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.DllNotFoundException: Unable to load DLL (oci.dll).Source Error: 
Line 31:  DataSet ds = new DataSet();
Line 32: 
Line 33:  dap.Fill(ds);
Line 34: 
Line 35:  return ds;我并没有引用这个oci.dll文件阿?为什么阿?