473,473 Members | 2,134 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Inaccessible due to its protection level!!!!!

2 New Member
Hi,

When i compiled these two source files, it gives me an error saying: Inaccesssible Due to its protection level.

Expand|Select|Wrap|Line Numbers
  1. ------------Base Class-----------------
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using System.Configuration;
  6. using System.Data.SqlClient;
  7.  
  8. namespace BDIC.Data
  9. {
  10.     class DataAccess
  11.     {
  12.  
  13.         protected string strConnect;
  14.  
  15.         public DataAccess()
  16.         {
  17.  
  18.         }
  19.         /// <summary>
  20.         /// Please see the App.config file
  21.         /// </summary>
  22.  
  23.         static DataAccess()
  24.         {
  25.  
  26.             strConnect = ConfigurationSettings.AppSettings["DbConnection"];
  27.         }
  28.  
  29.  
  30.  
  31.         /// <summary>
  32.         /// Gets a SqlConnection to the local sqlserver
  33.         /// </summary>
  34.         /// <returns>SqlConnection</returns>
  35.         protected SqlConnection GetConnection()
  36.         {
  37.             SqlConnection oConnection = new SqlConnection(strConnect);
  38.             return oConnection;
  39.         }
  40.     }
  41. }
  42.  
  43.  
  44.  
  45. -------inherited Class --------
  46. using System;
  47. using System.Collections.Generic;
  48. using System.Text;
  49. using System.Data;
  50. using System.Data.SqlClient;
  51.  
  52. namespace BDIC.Data
  53. {
  54.     class DataOperation:DataAccess
  55.     {
  56.  
  57.  
  58.         public DataOperation()
  59.         {
  60.  
  61.         }
  62.         /// <summary>
  63.         /// inserts a new row in to the table "person"
  64.         /// </summary>
  65.         /// <param name="strName"></param>
  66.         /// <param name="strCName"></param>
  67.         /// <param name="nWeekHour"></param>
  68.         /// <param name="strPassword"></param>
  69.         /// <param name="strEMail"></param>
  70.         /// <param name="nAlreadyIn">returns the number of rows, which fulfill before insertation the condition EMail=strEMail</param>
  71.         public void createJob(string customerName, string customerPhone, string truckMake,
  72.                            string truckModel, string registration, string damageDescription,
  73.                            DateTime deadLine)
  74.         {
  75.             //nAlreadyIn = 0;
  76.             // Establish Connection
  77.             using (SqlConnection oConnection = GetConnection())
  78.             {
  79.  
  80.                     // build the command
  81.                 using (SqlCommand oCommand = new SqlCommand("CreateJob", oConnection))
  82.                 {
  83.                     oCommand.CommandType = CommandType.StoredProcedure;
  84.  
  85.                     // Parameters
  86.                     SqlParameter paraName = new SqlParameter("@CustomerName", SqlDbType.Char, 50);
  87.  
  88.                         paraName.Value = customerName;
  89.                         oCommand.Parameters.Add(paraName);
  90.  
  91.                         SqlParameter paraCustomerPhone = new SqlParameter("@CustomerPhone", SqlDbType.Char, 50);
  92.                         paraCustomerPhone.Value = customerPhone;
  93.                         oCommand.Parameters.Add(paraCustomerPhone);
  94.  
  95.                         SqlParameter paraTruckMake = new SqlParameter("@TruckMake", SqlDbType.Int, 2);
  96.                         paraTruckMake.Value = truckMake;
  97.                         oCommand.Parameters.Add(paraTruckMake);
  98.  
  99.                         SqlParameter paraTruckModel = new SqlParameter("@TruckModel", SqlDbType.Char, 50);
  100.                         paraTruckModel.Value = truckModel;
  101.                         oCommand.Parameters.Add(paraTruckModel);
  102.  
  103.                     SqlParameter paraRegistration = new SqlParameter("@Registration", SqlDbType.Char, 50);
  104.                     paraRegistration.Value = registration;
  105.                     oCommand.Parameters.Add(paraRegistration);
  106.  
  107.                     SqlParameter paraDeadLine = new SqlParameter("@DeadLine", SqlDbType.Char, 50);
  108.                     paraDeadLine.Value = deadLine;
  109.                     oCommand.Parameters.Add(paraDeadLine);
  110.                     /*
  111.                     SqlParameter paraAlreadyIn = new SqlParameter("@AlreadyIn", SqlDbType.Int, 2);
  112.                     paraAlreadyIn.Direction = ParameterDirection.Output;
  113.                     oCommand.Parameters.Add(paraAlreadyIn);
  114.                     */
  115.  
  116.                     try
  117.                     {
  118.                         oConnection.Open();
  119.                         oCommand.ExecuteNonQuery();
  120.                         //nAlreadyIn = (int)paraAlreadyIn.Value;
  121.  
  122.                     }
  123.                     catch (Exception oException)
  124.                     {
  125.                         throw oException;
  126.                     }
  127.                 }
  128.             }
  129.         }
  130.  
  131.  
  132.  
  133.     }
  134. }

when i created a DataOperation object

DataOperation data = new DataOperation();

it said BDIC.Data.DataOperation is inaccessbile due to its protection level
and its also said DataOperation contructor does not define ( Do we really need to put anything in there? in my case i dont think i need too) and its last error said "createJob is not in the defintion.


Please explain for me..
Mar 21 '07 #1
0 1577

Sign in to post your reply or Sign up for a free account.

Similar topics

1
by: BlueOysterCult | last post by:
Hello I can't get around the error "inaccessible due to its protection level" - it points at a line that I am using .Sort() and BinarySearch() - but the real problem lies in another part of the...
1
by: Larry | last post by:
Thanks in advanced for your help I've added a TextBox1 and Button1 to a form in C# in VS.net 2003. When I double click on the Button1 at design time, a private method ButtonClick. I've...
1
by: Larry | last post by:
I have a VB background and am developing a new windows app in Csharp. I'm getting the error. 'inaccessible due to its protection level' I've added a TextBox1 and a Button1 to a form. I...
1
by: Chris | last post by:
Hi, New to C# programming. I'm trying to implement some simple security in my website. Basically a user cannot surf to secured aspx pages simply by accessing them directly through the address...
2
by: Jason Shohet | last post by:
I have a line: public System.Web.UI.HtmlControls.HtmlTable bldgInfo; Even though its public, for some reason every so often, .NET tells us that bldgInfo table is inaccessible due to the...
1
by: Arjen | last post by:
Hi, I have this inside a webusercontrol: private string MenuItem = new string; Inside the .ascx file I do this: <%= MenuItem(0) %> And I get this error: ....is inaccessible due to its...
3
by: xenophon | last post by:
This following innocuous code: System.IO.DirectoryInfo fff = new System.IO.DirectoryInfo(); System.IO.FileInfo ppp = fff.GetFiles( Request.MapPath(".") ); for( int ccc=0 ; ccc < ppp.Length ;...
2
by: sck10 | last post by:
Hello, I am getting the following error: fvServiceIdea_ItemUpdating_Validate(object, System.Web.UI.WebControls.FormViewUpdateEventArgs)' is inaccessible due to its protection level. Below...
6
by: milund | last post by:
I have a "funny" after upgrading to .NET2.0. The following code is placed inside an unsafe method in assembly "A" System.Object myIUnknownObject =...
5
by: Jay | last post by:
In both of the UnitTest projects that ship with the Ent Lib, (VSTS and Nunit), there is a TestMethod with the name: AttributeWithLowerAndUpperBoundsOnlyCreatesAppropriateValidator. Each of these...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.