Beispiel #1
0
        //**************************************************************************
        ///    <Description>
        ///       This method uses to get data from SO_CancelReason
        ///    </Description>
        ///    <Inputs>
        ///        ID
        ///    </Inputs>
        ///    <Outputs>
        ///       SO_CancelReasonVO
        ///    </Outputs>
        ///    <Returns>
        ///       SO_CancelReasonVO
        ///    </Returns>
        ///    <Authors>
        ///       HungLa
        ///    </Authors>
        ///    <History>
        ///       Tuesday, February 01, 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 "
                         + SO_CancelReasonTable.CANCELREASONID_FLD + ","
                         + SO_CancelReasonTable.CODE_FLD + ","
                         + SO_CancelReasonTable.DESCRIPTION_FLD
                         + " FROM " + SO_CancelReasonTable.TABLE_NAME
                         + " WHERE " + SO_CancelReasonTable.CANCELREASONID_FLD + "=" + pintID;

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

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

                SO_CancelReasonVO objObject = new SO_CancelReasonVO();

                while (odrPCS.Read())
                {
                    objObject.CancelReasonID = int.Parse(odrPCS[SO_CancelReasonTable.CANCELREASONID_FLD].ToString().Trim());
                    objObject.Code           = odrPCS[SO_CancelReasonTable.CODE_FLD].ToString().Trim();
                    objObject.Description    = odrPCS[SO_CancelReasonTable.DESCRIPTION_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();
                    }
                }
            }
        }
Beispiel #2
0
        //**************************************************************************
        ///    <Description>
        ///       This method uses to add data to SO_CancelReason
        ///    </Description>
        ///    <Inputs>
        ///        SO_CancelReasonVO
        ///    </Inputs>
        ///    <Outputs>
        ///       newly inserted primarkey value
        ///    </Outputs>
        ///    <Returns>
        ///       void
        ///    </Returns>
        ///    <Authors>
        ///       HungLa
        ///    </Authors>
        ///    <History>
        ///       Tuesday, February 01, 2005
        ///    </History>
        ///    <Notes>
        ///    </Notes>
        //**************************************************************************


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

            OleDbConnection oconPCS = null;
            OleDbCommand    ocmdPCS = null;

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

                strSql = "INSERT INTO SO_CancelReason("
                         + SO_CancelReasonTable.CODE_FLD + ","
                         + SO_CancelReasonTable.DESCRIPTION_FLD + ")"
                         + "VALUES(?,?)";

                ocmdPCS.Parameters.Add(new OleDbParameter(SO_CancelReasonTable.CODE_FLD, OleDbType.VarWChar));
                ocmdPCS.Parameters[SO_CancelReasonTable.CODE_FLD].Value = objObject.Code;

                ocmdPCS.Parameters.Add(new OleDbParameter(SO_CancelReasonTable.DESCRIPTION_FLD, OleDbType.VarWChar));
                ocmdPCS.Parameters[SO_CancelReasonTable.DESCRIPTION_FLD].Value = objObject.Description;



                ocmdPCS.CommandText = strSql;
                ocmdPCS.Connection.Open();
                ocmdPCS.ExecuteNonQuery();
            }
            catch (OleDbException ex)
            {
                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();
                    }
                }
            }
        }
Beispiel #3
0
        //**************************************************************************
        ///    <Description>
        ///       This method uses to update data to SO_CancelReason
        ///    </Description>
        ///    <Inputs>
        ///       SO_CancelReasonVO
        ///    </Inputs>
        ///    <Outputs>
        ///
        ///    </Outputs>
        ///    <Returns>
        ///
        ///    </Returns>
        ///    <Authors>
        ///       HungLa
        ///    </Authors>
        ///    <History>
        ///       09-Dec-2004
        ///    </History>
        ///    <Notes>
        ///    </Notes>
        //**************************************************************************


        public void Update(object pobjObjecVO)
        {
            const string METHOD_NAME = THIS + ".Update()";

            SO_CancelReasonVO objObject = (SO_CancelReasonVO)pobjObjecVO;


            //prepare value for parameters
            OleDbConnection oconPCS = null;
            OleDbCommand    ocmdPCS = null;

            try
            {
                string strSql = String.Empty;
                Utils  utils  = new Utils();
                oconPCS = new OleDbConnection(Utils.Instance.OleDbConnectionString);
                ocmdPCS = new OleDbCommand(strSql, oconPCS);
                strSql  = "UPDATE SO_CancelReason SET "
                          + SO_CancelReasonTable.CODE_FLD + "=   ?" + ","
                          + SO_CancelReasonTable.DESCRIPTION_FLD + "=  ?"
                          + " WHERE " + SO_CancelReasonTable.CANCELREASONID_FLD + "= ?";

                ocmdPCS.Parameters.Add(new OleDbParameter(SO_CancelReasonTable.CODE_FLD, OleDbType.VarWChar));
                ocmdPCS.Parameters[SO_CancelReasonTable.CODE_FLD].Value = objObject.Code;

                ocmdPCS.Parameters.Add(new OleDbParameter(SO_CancelReasonTable.DESCRIPTION_FLD, OleDbType.VarWChar));
                ocmdPCS.Parameters[SO_CancelReasonTable.DESCRIPTION_FLD].Value = objObject.Description;

                ocmdPCS.Parameters.Add(new OleDbParameter(SO_CancelReasonTable.CANCELREASONID_FLD, OleDbType.Integer));
                ocmdPCS.Parameters[SO_CancelReasonTable.CANCELREASONID_FLD].Value = objObject.CancelReasonID;


                ocmdPCS.CommandText = strSql;
                ocmdPCS.Connection.Open();
                ocmdPCS.ExecuteNonQuery();
            }
            catch (OleDbException ex)
            {
                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();
                    }
                }
            }
        }