当前位置: 首页>>代码示例>>C#>>正文


C# DBTypes.DBString类代码示例

本文整理汇总了C#中Framework.Runtime.DBTypes.DBString的典型用法代码示例。如果您正苦于以下问题:C# DBString类的具体用法?C# DBString怎么用?C# DBString使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


DBString类属于Framework.Runtime.DBTypes命名空间,在下文中一共展示了DBString类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Page_Load

        protected void Page_Load(object sender, EventArgs e)
        {
            //lekérdezzzük a kategóriához tartozó fejléc és részletes adatokat
              IKefWebDataService srvKefWebData = ServiceFactory.GetKefWebDataService();
              DBString category = new DBString("DROG_STRAT");

              KefWebDataContainer contKefWebData = srvKefWebData.KefCategoryOfKefWebDataSelectByIsActive(category, 1);

              if (contKefWebData.All.Count > 0) //ha van aktív adat az oldalhoz
              {
            KefWebData kefData = (KefWebData) contKefWebData.All.Items[0];

            lblDescription.Text = kefData.Description.ToString();
            lblTitle.Text = kefData.Title.ToString();
            lblSubTitle.Text = kefData.SubTitle.ToString().ToUpper();

            //lekérdezzük a mellékleteket is
            KefDownloadContainer contKefDownl = srvKefWebData.SelectChildrenByKefWebDataOfKefDownload(kefData.ID);

            RepeaterControl.DataSource = contKefDownl.AllAsDatatable;
            RepeaterControl.DataBind();

            if (contKefDownl.AllCount > 0) RepeaterControl.Visible = true;
            else RepeaterControl.Visible = false;
              }
        }
开发者ID:bmadarasz,项目名称:ndihelpdesk,代码行数:26,代码来源:DrogStrategy.aspx.cs

示例2: DeleteChildrenByKefContactTypeOfMember

 public virtual void DeleteChildrenByKefContactTypeOfMember(DBString IDVal)
 {
     TraceCallEnterEvent.Raise();
       try
       {
     m_DataContext.BeginNestedTran();
     try
     {
       m_DataContext.ndihdKefContactTypeOfMemberDeleteBy(IDVal);
       m_DataContext.CommitNested();
     }
     catch
     {
       m_DataContext.RollbackNested();
       throw;
     }
     TraceCallReturnEvent.Raise();
     return;
       }
       catch (Exception ex)
       {
     ExceptionManager.Publish(ex);
     TraceCallReturnEvent.Raise(false);
     throw;
       }
 }
开发者ID:bmadarasz,项目名称:ndihelpdesk,代码行数:26,代码来源:KefContactTypeServiceBase.cs

示例3: CheckProgramExistByName

        public bool CheckProgramExistByName(DBString programName, DBGuid organizationRef, DBGuid programID)
        {
            TraceCallEnterEvent.Raise();
              try
              {
            Program result = null;
            DataSet entitySet = m_DataContext.ndihdProgramSelectByName(
              programName,
              organizationRef,
              programID);

            if (entitySet.Tables[0].Rows.Count != 0)
            {
              result = new Program(entitySet);
            }

            TraceCallReturnEvent.Raise();

            if (result != null)
            {
              return true;
            }

            return false;
              }
              catch (Exception ex)
              {
            ExceptionManager.Publish(ex);
            TraceCallReturnEvent.Raise(false);
            throw;
              }
        }
开发者ID:bmadarasz,项目名称:ndihelpdesk,代码行数:32,代码来源:ProgramService.cs

示例4: ProgramKeywordBase

 // -------------------------------------------------------------------------------------
 /// <summary>
 /// Primary key based constructor
 /// </summary>
 /// <param name="KeywordRefVal">Value of 'cKeywordRef' field</param>
 /// <param name="ProgramRefVal">Value of 'uProgramRef' field</param>
 // -------------------------------------------------------------------------------------
 public ProgramKeywordBase(DBString KeywordRefVal,
                       DBGuid ProgramRefVal)
 {
     ResetExceptions();
       m_KeywordRef = KeywordRefVal;
       m_ProgramRef = ProgramRefVal;
 }
开发者ID:bmadarasz,项目名称:ndihelpdesk,代码行数:14,代码来源:ProgramKeywordBase.cs

示例5: DeleteChildrenByWorkingAreaOfOrganisation

 public virtual void DeleteChildrenByWorkingAreaOfOrganisation(DBString IDVal)
 {
     TraceCallEnterEvent.Raise();
       try
       {
     m_DataContext.BeginNestedTran();
     try
     {
       m_DataContext.ndihdWorkingAreaOfOrganisationDeleteBy(IDVal);
       m_DataContext.CommitNested();
     }
     catch
     {
       m_DataContext.RollbackNested();
       throw;
     }
     TraceCallReturnEvent.Raise();
     return;
       }
       catch (Exception ex)
       {
     ExceptionManager.Publish(ex);
     TraceCallReturnEvent.Raise(false);
     throw;
       }
 }
开发者ID:bmadarasz,项目名称:ndihelpdesk,代码行数:26,代码来源:WorkingAreaServiceBase.cs

示例6: JobAnswer

 // -------------------------------------------------------------------------------------
 /// <summary>
 /// Primary key based constructor
 /// </summary>
 /// <param name="JobRefVal">Value of 'uJobRef' field</param>
 /// <param name="TypeVal">Value of 'cType' field</param>
 /// <param name="SubscriberNameRefVal">Value of 'cSubscriberNameRef' field</param>
 /// <param name="SenderNameRefVal">Value of 'cSenderNameRef' field</param>
 // -------------------------------------------------------------------------------------
 public JobAnswer(DBGuid JobRefVal,
              DBString TypeVal,
              DBString SubscriberNameRefVal,
              DBString SenderNameRefVal)
     : base(JobRefVal, TypeVal, SubscriberNameRefVal, SenderNameRefVal)
 {
 }
开发者ID:bmadarasz,项目名称:ndihelpdesk,代码行数:16,代码来源:JobAnswer.cs

示例7: ProgramRegionBase

 // -------------------------------------------------------------------------------------
 /// <summary>
 /// Primary key based constructor
 /// </summary>
 /// <param name="ProgramRefVal">Value of 'uProgramRef' field</param>
 /// <param name="RegionRefVal">Value of 'cRegionRef' field</param>
 // -------------------------------------------------------------------------------------
 public ProgramRegionBase(DBGuid ProgramRefVal,
                      DBString RegionRefVal)
 {
     ResetExceptions();
       m_ProgramRef = ProgramRefVal;
       m_RegionRef = RegionRefVal;
 }
开发者ID:bmadarasz,项目名称:ndihelpdesk,代码行数:14,代码来源:ProgramRegionBase.cs

示例8: AddEvent

 public void AddEvent(DBDateTime dTimeStamp, DBString cSeverity, DBString cSource, DBString cMethod,
                  DBString cThreadInfo, DBString cWindowsIdentity, DBString cPrincipalName, DBString cMessage,
                  out int retVal)
 {
     SqlCommand command1 = base.PrepareSPCall("aeAddEvent");
       SqlParameter parameter1 = command1.Parameters.Add("@RETURNVALUE", SqlDbType.Int);
       parameter1.Direction = ParameterDirection.ReturnValue;
       SqlParameter parameter2 = command1.Parameters.Add("@dTimeStamp", SqlDbType.DateTime);
       parameter2.Value = dTimeStamp.Value;
       SqlParameter parameter3 = command1.Parameters.Add("@cSeverity", SqlDbType.VarChar, 0x20);
       parameter3.Value = cSeverity.Value;
       SqlParameter parameter4 = command1.Parameters.Add("@cSource", SqlDbType.VarChar, 0x80);
       parameter4.Value = cSource.Value;
       SqlParameter parameter5 = command1.Parameters.Add("@cMethod", SqlDbType.VarChar, 0x80);
       parameter5.Value = cMethod.Value;
       SqlParameter parameter6 = command1.Parameters.Add("@cThreadInfo", SqlDbType.VarChar, 0x80);
       parameter6.Value = cThreadInfo.Value;
       SqlParameter parameter7 = command1.Parameters.Add("@cWindowsIdentity", SqlDbType.VarChar, 0x40);
       parameter7.Value = cWindowsIdentity.Value;
       SqlParameter parameter8 = command1.Parameters.Add("@cPrincipalName", SqlDbType.VarChar, 0x40);
       parameter8.Value = cPrincipalName.Value;
       SqlParameter parameter9 = command1.Parameters.Add("@cMessage", SqlDbType.VarChar, 0x200);
       parameter9.Value = cMessage.Value;
       try
       {
     command1.ExecuteNonQuery();
       }
       finally
       {
     base.FinishSPCall();
       }
       retVal = (int) parameter1.Value;
 }
开发者ID:bmadarasz,项目名称:ndihelpdesk,代码行数:33,代码来源:AuditEventDataContext.cs

示例9: TemplateCategoryBase

 // -------------------------------------------------------------------------------------
 /// <summary>
 /// Primary key based constructor
 /// </summary>
 /// <param name="TemplateRefVal">Value of 'uTemplateRef' field</param>
 /// <param name="ProgramCategoryRefVal">Value of 'cProgramCategoryRef' field</param>
 // -------------------------------------------------------------------------------------
 public TemplateCategoryBase(DBGuid TemplateRefVal,
                         DBString ProgramCategoryRefVal)
 {
     ResetExceptions();
       m_TemplateRef = TemplateRefVal;
       m_ProgramCategoryRef = ProgramCategoryRefVal;
 }
开发者ID:bmadarasz,项目名称:ndihelpdesk,代码行数:14,代码来源:TemplateCategoryBase.cs

示例10: GlobalSearchBase

 // -------------------------------------------------------------------------------------
 /// <summary>
 /// Primary key based constructor
 /// </summary>
 /// <param name="IDRefVal">Value of 'uIDRef' field</param>
 /// <param name="SearchCategoryRefVal">Value of 'cSearchCategoryRef' field</param>
 // -------------------------------------------------------------------------------------
 public GlobalSearchBase(DBGuid IDRefVal,
                     DBString SearchCategoryRefVal)
 {
     ResetExceptions();
       m_IDRef = IDRefVal;
       m_SearchCategoryRef = SearchCategoryRefVal;
 }
开发者ID:bmadarasz,项目名称:ndihelpdesk,代码行数:14,代码来源:GlobalSearchBase.cs

示例11: ndihdAttachementOfUserDeleteBy

   public void ndihdAttachementOfUserDeleteBy(DBString cLoginNameRef,
 out int retVal)
   {
       TraceCallEnterEvent.Raise();
         SqlCommand sqlComm = PrepareSPCall("[dbo].[ndihdAttachementOfUserDeleteBy]");
         SqlParameter returnValue = sqlComm.Parameters.Add("@RETURNVALUE", SqlDbType.Int);
         returnValue.Direction = ParameterDirection.ReturnValue;
         SqlParameter p1 = sqlComm.Parameters.Add("@cLoginNameRef", SqlDbType.VarChar, 50);
         p1.Value = cLoginNameRef.Value;
         TraceDbCommandEvent.Raise(sqlComm);
         try
         {
       sqlComm.ExecuteNonQuery();
       TraceCallReturnEvent.Raise();
         }
         catch (SqlException e)
         {
       TraceCallReturnEvent.Raise(false);
       SqlErrorHandler.Handle(e, cLoginNameRef.ToString());
         }
         finally
         {
       FinishSPCall();
         }
         retVal = (int)returnValue.Value;
         TraceInfoEvent.Raise("RetVal: {0}", retVal);
   }
开发者ID:bmadarasz,项目名称:ndihelpdesk,代码行数:27,代码来源:BaseDataContext0.cs

示例12: OrganisationUserBase

 // -------------------------------------------------------------------------------------
 /// <summary>
 /// Primary key based constructor
 /// </summary>
 /// <param name="OrganisationRefVal">Value of 'uOrganisationRef' field</param>
 /// <param name="LoginNameRefVal">Value of 'cLoginNameRef' field</param>
 // -------------------------------------------------------------------------------------
 public OrganisationUserBase(DBGuid OrganisationRefVal,
                         DBString LoginNameRefVal)
 {
     ResetExceptions();
       m_OrganisationRef = OrganisationRefVal;
       m_LoginNameRef = LoginNameRefVal;
 }
开发者ID:bmadarasz,项目名称:ndihelpdesk,代码行数:14,代码来源:OrganisationUserBase.cs

示例13: EventPropertyBase

 // -------------------------------------------------------------------------------------
 /// <summary>
 /// Primary key based constructor
 /// </summary>
 /// <param name="EventIDVal">Value of 'nEventID' field</param>
 /// <param name="NameVal">Value of 'cName' field</param>
 // -------------------------------------------------------------------------------------
 public EventPropertyBase(DBInt EventIDVal,
                      DBString NameVal)
 {
     ResetExceptions();
       m_EventID = EventIDVal;
       m_Name = NameVal;
 }
开发者ID:bmadarasz,项目名称:ndihelpdesk,代码行数:14,代码来源:EventPropertyBase.cs

示例14: frmUserChangePassword

        public frmUserChangePassword(DBString ID)
        {
            // Required for Windows Form Designer support
              InitializeComponent();

              CurrentID = ID;
        }
开发者ID:bmadarasz,项目名称:ndihelpdesk,代码行数:7,代码来源:frmUserChangePassword.cs

示例15: DeleteChildrenByAttachementOfUser

 public virtual void DeleteChildrenByAttachementOfUser(DBString LoginNameVal)
 {
     TraceCallEnterEvent.Raise();
       try
       {
     m_DataContext.BeginNestedTran();
     try
     {
       m_DataContext.ndihdAttachementOfUserDeleteBy(LoginNameVal);
       m_DataContext.CommitNested();
     }
     catch
     {
       m_DataContext.RollbackNested();
       throw;
     }
     TraceCallReturnEvent.Raise();
     return;
       }
       catch (Exception ex)
       {
     ExceptionManager.Publish(ex);
     TraceCallReturnEvent.Raise(false);
     throw;
       }
 }
开发者ID:bmadarasz,项目名称:ndihelpdesk,代码行数:26,代码来源:UserServiceBase.cs


注:本文中的Framework.Runtime.DBTypes.DBString类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。