Example #1
0
        //**************************************************************************
        ///    <Description>
        ///       This method uses to get data from sys_RoleParty
        ///    </Description>
        ///    <Inputs>
        ///        ID
        ///    </Inputs>
        ///    <Outputs>
        ///       sys_RolePartyVO
        ///    </Outputs>
        ///    <Returns>
        ///       sys_RolePartyVO
        ///    </Returns>
        ///    <Authors>
        ///       HungLa
        ///    </Authors>
        ///    <History>
        ///       Wednesday, November 16, 2005
        ///    </History>
        ///    <Notes>
        ///    </Notes>
        //**************************************************************************

        public object GetObjectVO(int pintID)
        {
            const string METHOD_NAME = THIS + ".GetObjectVO()";
            DataSet      dstPCS      = new DataSet();

            OleDbDataReader odrPCS  = null;
            OleDbConnection oconPCS = null;
            OleDbCommand    ocmdPCS = null;

            try
            {
                string strSql = String.Empty;
                strSql = "SELECT "
                         + sys_RolePartyTable.ROLEPARTYID_FLD + ","
                         + sys_RolePartyTable.ROLEID_FLD + ","
                         + sys_RolePartyTable.PARTYID_FLD
                         + " FROM " + sys_RolePartyTable.TABLE_NAME
                         + " WHERE " + sys_RolePartyTable.ROLEPARTYID_FLD + "=" + pintID;

                Utils utils = new Utils();
                oconPCS = new OleDbConnection(Utils.Instance.OleDbConnectionString);
                ocmdPCS = new OleDbCommand(strSql, oconPCS);

                ocmdPCS.Connection.Open();
                odrPCS = ocmdPCS.ExecuteReader();

                sys_RolePartyVO objObject = new sys_RolePartyVO();

                while (odrPCS.Read())
                {
                    objObject.RolePartyID = int.Parse(odrPCS[sys_RolePartyTable.ROLEPARTYID_FLD].ToString().Trim());
                    objObject.RoleID      = int.Parse(odrPCS[sys_RolePartyTable.ROLEID_FLD].ToString().Trim());
                    objObject.PartyID     = int.Parse(odrPCS[sys_RolePartyTable.PARTYID_FLD].ToString().Trim());
                }
                return(objObject);
            }
            catch (OleDbException ex)
            {
                throw new PCSDBException(ErrorCode.ERROR_DB, METHOD_NAME, ex);
            }

            catch (Exception ex)
            {
                throw new PCSDBException(ErrorCode.OTHER_ERROR, METHOD_NAME, ex);
            }
            finally
            {
                if (oconPCS != null)
                {
                    if (oconPCS.State != ConnectionState.Closed)
                    {
                        oconPCS.Close();
                    }
                }
            }
        }
Example #2
0
        //**************************************************************************
        ///    <Description>
        ///       This method uses to add data to sys_RoleParty
        ///    </Description>
        ///    <Inputs>
        ///        sys_RolePartyVO
        ///    </Inputs>
        ///    <Outputs>
        ///       newly inserted primarkey value
        ///    </Outputs>
        ///    <Returns>
        ///       void
        ///    </Returns>
        ///    <Authors>
        ///       HungLa
        ///    </Authors>
        ///    <History>
        ///       Wednesday, November 16, 2005
        ///    </History>
        ///    <Notes>
        ///    </Notes>
        //**************************************************************************


        public void Add(object pobjObjectVO)
        {
            const string METHOD_NAME = THIS + ".Add()";

            OleDbConnection oconPCS = null;
            OleDbCommand    ocmdPCS = null;

            try
            {
                sys_RolePartyVO objObject = (sys_RolePartyVO)pobjObjectVO;
                string          strSql    = String.Empty;
                Utils           utils     = new Utils();
                oconPCS = new OleDbConnection(Utils.Instance.OleDbConnectionString);
                ocmdPCS = new OleDbCommand("", oconPCS);

                strSql = "INSERT INTO sys_RoleParty("
                         + sys_RolePartyTable.ROLEID_FLD + ","
                         + sys_RolePartyTable.PARTYID_FLD + ")"
                         + "VALUES(?,?)";

                ocmdPCS.Parameters.Add(new OleDbParameter(sys_RolePartyTable.ROLEID_FLD, OleDbType.Integer));
                ocmdPCS.Parameters[sys_RolePartyTable.ROLEID_FLD].Value = objObject.RoleID;

                ocmdPCS.Parameters.Add(new OleDbParameter(sys_RolePartyTable.PARTYID_FLD, OleDbType.Integer));
                ocmdPCS.Parameters[sys_RolePartyTable.PARTYID_FLD].Value = objObject.PartyID;



                ocmdPCS.CommandText = strSql;
                ocmdPCS.Connection.Open();
                ocmdPCS.ExecuteNonQuery();
            }
            catch (OleDbException ex)
            {
                if (ex.Errors.Count > 1)
                {
                    if (ex.Errors[1].NativeError == ErrorCode.SQLDUPLICATE_KEYCODE)
                    {
                        throw new PCSDBException(ErrorCode.DUPLICATE_KEY, METHOD_NAME, ex);
                    }
                }
                else
                {
                    throw new PCSDBException(ErrorCode.ERROR_DB, METHOD_NAME, ex);
                }
            }

            catch (InvalidOperationException ex)
            {
                throw new PCSDBException(ErrorCode.ERROR_DB, METHOD_NAME, ex);
            }
            catch (Exception ex)
            {
                throw new PCSDBException(ErrorCode.OTHER_ERROR, METHOD_NAME, ex);
            }

            finally
            {
                if (oconPCS != null)
                {
                    if (oconPCS.State != ConnectionState.Closed)
                    {
                        oconPCS.Close();
                    }
                }
            }
        }