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


C# DBTypes.DBInt类代码示例

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


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

示例1: GetStatistics

 public void GetStatistics(out DBInt RegisterUserCount,
                       out DBInt RegisterOrganisationCount,
                       out DBInt PendingQuestionFormCount)
 {
     TraceCallEnterEvent.Raise();
       try
       {
     RegisterUserCount = new DBInt();
     RegisterOrganisationCount = new DBInt();
     PendingQuestionFormCount = new DBInt();
     DataSet entitySet = m_DataContext.ndihdGetStatistics();
     if (entitySet.Tables[0].Rows.Count == 1)
     {
       DataRow dr = entitySet.Tables[0].Rows[0];
       RegisterUserCount.Value = dr["nRegisterUserCount"];
       RegisterOrganisationCount.Value = dr["nRegisterOrganisationCount"];
       PendingQuestionFormCount.Value = dr["nPendingQuestionFormCount"];
     }
     TraceCallReturnEvent.Raise();
     //return result;
       }
       catch (Exception ex)
       {
     ExceptionManager.Publish(ex);
     TraceCallReturnEvent.Raise(false);
     throw;
       }
 }
开发者ID:bmadarasz,项目名称:ndihelpdesk,代码行数:28,代码来源:RegisterUserService.cs

示例2: DeleteChildrenByDistrictSearchCodeOfOrganisation

 public virtual void DeleteChildrenByDistrictSearchCodeOfOrganisation(DBInt DistrictSearchCodeVal)
 {
     TraceCallEnterEvent.Raise();
       try
       {
     m_DataContext.BeginNestedTran();
     try
     {
       m_DataContext.ndihdDistrictSearchCodeOfOrganisationDeleteBy(DistrictSearchCodeVal);
       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,代码来源:DistrictSearchServiceBase.cs

示例3: 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

示例4: DeleteChildrenByEventProperty

 public virtual void DeleteChildrenByEventProperty(DBInt IDVal)
 {
     TraceCallEnterEvent.Raise();
       try
       {
     m_DataContext.BeginNestedTran();
     try
     {
       m_DataContext.ndihdEventPropertyDeleteBy(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,代码来源:EventServiceBase.cs

示例5: frmSystemLogEdit

        public frmSystemLogEdit(DBInt ID)
        {
            // Required for Windows Form Designer support
              InitializeComponent();

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

示例6: TemplatePageBase

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

示例7: KefCategoryOfKefWebDataSelectByIsActive

        public KefWebDataContainer KefCategoryOfKefWebDataSelectByIsActive(string KefCategoryRef, DBInt IsActive)
        {
            TraceCallEnterEvent.Raise();
              try
              {
            KefWebDataContainer result;

            DataSet entitySet = m_DataContext.ndihdKefCategoryOfKefWebDataSelectByIsActive(KefCategoryRef, IsActive);
            result = new KefWebDataContainer(entitySet.Tables[0]);

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

示例8: AddEventProperty

 public void AddEventProperty(DBInt nEventID, DBString cName, DBString cValue, out int retVal)
 {
     SqlCommand command1 = base.PrepareSPCall("aeAddEventProperty");
       SqlParameter parameter1 = command1.Parameters.Add("@RETURNVALUE", SqlDbType.Int);
       parameter1.Direction = ParameterDirection.ReturnValue;
       SqlParameter parameter2 = command1.Parameters.Add("@nEventID", SqlDbType.Int);
       parameter2.Value = nEventID.Value;
       SqlParameter parameter3 = command1.Parameters.Add("@cName", SqlDbType.VarChar, 0x20);
       parameter3.Value = cName.Value;
       SqlParameter parameter4 = command1.Parameters.Add("@cValue", SqlDbType.VarChar, 0xfa0);
       parameter4.Value = cValue.Value;
       try
       {
     command1.ExecuteNonQuery();
       }
       finally
       {
     base.FinishSPCall();
       }
       retVal = (int) parameter1.Value;
 }
开发者ID:bmadarasz,项目名称:ndihelpdesk,代码行数:21,代码来源:AuditEventDataContext.cs

示例9: ndihdEDocumentSelectDispsetTop

   public DataSet ndihdEDocumentSelectDispsetTop(DBGuid uCategoryRef,
 DBString cTypeRef,
 DBInt nShowMaxCount,
 out int retVal)
   {
       TraceCallEnterEvent.Raise();
         SqlCommand sqlComm = PrepareSPCall("[dbo].[ndihdEDocumentSelectDispsetTop]");
         SqlParameter returnValue = sqlComm.Parameters.Add("@RETURNVALUE", SqlDbType.Int);
         returnValue.Direction = ParameterDirection.ReturnValue;
         SqlParameter p1 = sqlComm.Parameters.Add("@uCategoryRef", SqlDbType.UniqueIdentifier);
         p1.Value = uCategoryRef.Value;
         SqlParameter p2 = sqlComm.Parameters.Add("@cTypeRef", SqlDbType.Char, 10);
         p2.Value = cTypeRef.Value;
         SqlParameter p3 = sqlComm.Parameters.Add("@nShowMaxCount", SqlDbType.Int);
         p3.Value = nShowMaxCount.Value;
         TraceDbCommandEvent.Raise(sqlComm);
         DataSet Result = new DataSet();
         try
         {
       SqlDataAdapter sqlAdapt = new SqlDataAdapter(sqlComm);
       sqlAdapt.Fill(Result);
       TraceCallReturnEvent.Raise();
         }
         catch (SqlException e)
         {
       TraceCallReturnEvent.Raise(false);
       SqlErrorHandler.Handle(e, uCategoryRef.ToString());
         }
         finally
         {
       FinishSPCall();
         }
         retVal = (int)returnValue.Value;
         TraceInfoEvent.Raise("RetVal: {0}", retVal);
         return Result;
   }
开发者ID:bmadarasz,项目名称:ndihelpdesk,代码行数:36,代码来源:BaseDataContext2.cs

示例10: ndihdQualificationUpdate

   public void ndihdQualificationUpdate(DBString cID,
 DBString cName,
 bool bIsActive,
 DBInt nOrder,
 out int retVal)
   {
       TraceCallEnterEvent.Raise();
         SqlCommand sqlComm = PrepareSPCall("[dbo].[ndihdQualificationUpdate]");
         SqlParameter returnValue = sqlComm.Parameters.Add("@RETURNVALUE", SqlDbType.Int);
         returnValue.Direction = ParameterDirection.ReturnValue;
         SqlParameter p1 = sqlComm.Parameters.Add("@cID", SqlDbType.Char, 10);
         p1.Value = cID.Value;
         SqlParameter p2 = sqlComm.Parameters.Add("@cName", SqlDbType.VarChar, 250);
         p2.Value = cName.Value;
         SqlParameter p3 = sqlComm.Parameters.Add("@bIsActive", SqlDbType.Bit);
         p3.Value = bIsActive;
         SqlParameter p4 = sqlComm.Parameters.Add("@nOrder", SqlDbType.Int);
         p4.Value = nOrder.Value;
         TraceDbCommandEvent.Raise(sqlComm);
         try
         {
       sqlComm.ExecuteNonQuery();
       TraceCallReturnEvent.Raise();
         }
         catch (SqlException e)
         {
       TraceCallReturnEvent.Raise(false);
       SqlErrorHandler.Handle(e, cID.ToString());
         }
         finally
         {
       FinishSPCall();
         }
         retVal = (int)returnValue.Value;
         TraceInfoEvent.Raise("RetVal: {0}", retVal);
   }
开发者ID:bmadarasz,项目名称:ndihelpdesk,代码行数:36,代码来源:BaseDataContext3.cs

示例11: TemplateDetailBase

 // -------------------------------------------------------------------------------------
 /// <summary>
 /// XmlNode setup constructor
 /// </summary>
 /// <param name="node">XmlNode containing document data.</param>
 // -------------------------------------------------------------------------------------
 public TemplateDetailBase(XmlNode node)
 {
     m_ID = new DBString(node.Attributes["ID"]);
       m_TemplateRef = new DBGuid(node.Attributes["TemplateRef"]);
       m_Question = new DBString(node.SelectSingleNode("Question"));
       m_DataType = new DBString(node.SelectSingleNode("DataType"));
       m_Layout = new DBString(node.SelectSingleNode("Layout"));
       m_Constraint = new DBString(node.SelectSingleNode("Constraint"));
       m_ItemList = new DBString(node.SelectSingleNode("ItemList"));
       m_Description = new DBString(node.SelectSingleNode("Description"));
       m_Order = new DBInt(node.SelectSingleNode("Order"));
       m_PageIndex = new DBInt(node.SelectSingleNode("PageIndex"));
       m_IsActive = Convert.ToBoolean(node.SelectSingleNode("IsActive").InnerText);
       m_IsFilterCondition = Convert.ToBoolean(node.SelectSingleNode("IsFilterCondition").InnerText);
 }
开发者ID:bmadarasz,项目名称:ndihelpdesk,代码行数:21,代码来源:TemplateDetailBase.cs

示例12: TemplatePage

 // -------------------------------------------------------------------------------------
 /// <summary>
 /// Copy constructor.
 /// </summary>
 /// <param name="TemplateRefVal">Value of 'uTemplateRef' field</param>
 /// <param name="PageIndexVal">Value of 'nPageIndex' field</param>
 /// <param name="origInstance">Original document data to copy.</param>
 // -------------------------------------------------------------------------------------
 public TemplatePage(DBGuid TemplateRefVal,
                 DBInt PageIndexVal,
                 TemplatePage origInstance)
     : base(TemplateRefVal, PageIndexVal, origInstance)
 {
 }
开发者ID:bmadarasz,项目名称:ndihelpdesk,代码行数:14,代码来源:TemplatePage.cs

示例13: DistrictSearch

 // -------------------------------------------------------------------------------------
 /// <summary>
 /// Copy constructor.
 /// </summary>
 /// <param name="DistrictSearchCodeVal">Value of 'nDistrictSearchCode' field</param>
 /// <param name="origInstance">Original document data to copy.</param>
 // -------------------------------------------------------------------------------------
 public DistrictSearch(DBInt DistrictSearchCodeVal,
                   DistrictSearch origInstance)
     : base(DistrictSearchCodeVal, origInstance)
 {
 }
开发者ID:bmadarasz,项目名称:ndihelpdesk,代码行数:12,代码来源:DistrictSearch.cs

示例14: JobOfferBase

 // -------------------------------------------------------------------------------------
 /// <summary>
 /// XmlNode setup constructor
 /// </summary>
 /// <param name="node">XmlNode containing document data.</param>
 // -------------------------------------------------------------------------------------
 public JobOfferBase(XmlNode node)
 {
     m_ID = new DBGuid(node.Attributes["ID"]);
       m_RefId = new DBInt(node.SelectSingleNode("RefId"));
       m_Description = new DBString(node.SelectSingleNode("Description"));
       m_Message = new DBString(node.SelectSingleNode("Message"));
       m_Requirements = new DBString(node.SelectSingleNode("Requirements"));
       m_City = new DBString(node.SelectSingleNode("City"));
       m_RegionRef = new DBString(node.SelectSingleNode("RegionRef"));
       m_Status = new DBString(node.SelectSingleNode("Status"));
       m_QualificationMinRef = new DBString(node.SelectSingleNode("QualificationMinRef"));
       m_IdealEmployee = new DBString(node.SelectSingleNode("IdealEmployee"));
       m_ActivityPrevention = Convert.ToBoolean(node.SelectSingleNode("ActivityPrevention").InnerText);
       m_ActivityResearch = Convert.ToBoolean(node.SelectSingleNode("ActivityResearch").InnerText);
       m_ActivityRehabilitation = Convert.ToBoolean(node.SelectSingleNode("ActivityRehabilitation").InnerText);
       m_ActivityOther = Convert.ToBoolean(node.SelectSingleNode("ActivityOther").InnerText);
       m_EmployeeCount = new DBInt(node.SelectSingleNode("EmployeeCount"));
       m_FreeEmployeeCount = new DBInt(node.SelectSingleNode("FreeEmployeeCount"));
       m_HomePage = new DBString(node.SelectSingleNode("HomePage"));
       m_ContactName = new DBString(node.SelectSingleNode("ContactName"));
       m_ContactPhone = new DBString(node.SelectSingleNode("ContactPhone"));
       m_ContactEmail = new DBString(node.SelectSingleNode("ContactEmail"));
       m_Sender = new DBString(node.SelectSingleNode("Sender"));
       m_NotificationSend = Convert.ToBoolean(node.SelectSingleNode("NotificationSend").InnerText);
       m_NotificationDate = new DBDateTime(node.SelectSingleNode("NotificationDate"));
       m_Expiredate = new DBDateTime(node.SelectSingleNode("Expiredate"));
       m_LastModified = new DBDateTime(node.SelectSingleNode("LastModified"));
       m_Created = new DBDateTime(node.SelectSingleNode("Created"));
 }
开发者ID:bmadarasz,项目名称:ndihelpdesk,代码行数:35,代码来源:JobOfferBase.cs

示例15: EDocumentCategorySelectFiltered

 public EDocumentCategoryContainer EDocumentCategorySelectFiltered(DBString cName,
                                                               DBString cType, DBInt isActive)
 {
     TraceCallEnterEvent.Raise();
       try
       {
     if (isActive == null)
     {
       isActive = DBInt.Null;
     }
     EDocumentCategoryContainer result;
     DataSet entitySet = m_DataContext.ndihdEDocumentCategorySelectFiltered(cName, cType, isActive);
     result = new EDocumentCategoryContainer(entitySet.Tables[0]);
     TraceCallReturnEvent.Raise();
     return result;
       }
       catch (Exception ex)
       {
     ExceptionManager.Publish(ex);
     TraceCallReturnEvent.Raise(false);
     throw;
       }
 }
开发者ID:bmadarasz,项目名称:ndihelpdesk,代码行数:23,代码来源:EDocumentCategoryService.cs


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