473,790 Members | 2,380 Online
Bytes | Software Development & Data Engineering Community
+ 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.DataO peration 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 1592

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

Similar topics

1
545
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 code below(because the error says College.Persons_ThePersons....): /// /// Summary description for Persons. /// public class Persons
1
5077
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 defined a local variable inside the ButtonClick event named 'string strSample;'
1
17248
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 double click the Button1 button. inside the method I type
1
2232
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 bar. If they have not logged in and created a forms authentication cookie they will be redirected to a friendly page telling them the page is inaccessible.
2
2979
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 protection level. Its an html table -- but serverside. And it sits on a ascx (control). When we try to access that table from somewhere else, we get that error.
1
2587
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 protection level
3
2399
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 ; ccc++ ) { System.Web.HttpResponse.Response.Write( "<a href=\"" + Request.MapPath(".") + "/" + HttpUtility.HtmlEncode(ppp.Name) + "\">link</a>" );
2
6946
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 is what I am using, so I don't understand what level of protection is being used. Any assistance with this would be greatly appreciated.
6
13351
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 = Marshal.GetObjectForIUnknown((System.IntPtr)m_someClass.MyProperty); SomeClass is declared public in assembly "B". MyProperty get is declared public and written in managed C++ (old syntax) like this.
5
2422
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 tests creates a StringLengthValidatorAttribute: ValidatorAttribute attribute = new StringLengthValidatorAttribute(10, 20); The next line creates a validator object based on the settings defined in the Attribute:
0
9666
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10200
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9986
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9021
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7530
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5422
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4094
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 we have to send another system
2
3707
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2909
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.