예제 #1
0
        private void Fetch(Documento source)
        {
            _base.CopyValues(source);

            if (Childs)
            {
                string      query = string.Empty;
                IDataReader reader;

                AgenteDocumento.DoLOCK(Session());
                query              = AgenteDocumentos.SELECT(this);
                reader             = nHManager.Instance.SQLNativeSelect(query, Session());
                _agente_documentos = AgenteDocumentos.GetChildList(reader);
            }

            MarkOld();
        }
예제 #2
0
        // called to retrieve data from the database
        private void DataPortal_Fetch(CriteriaEx criteria)
        {
            try
            {
                _base.Record.Oid = 0;;
                SessionCode      = criteria.SessionCode;
                Childs           = criteria.Childs;

                if (nHMng.UseDirectSQL)
                {
                    Documento.DoLOCK(Session());
                    IDataReader reader = nHMng.SQLNativeSelect(criteria.Query, Session());

                    if (reader.Read())
                    {
                        _base.CopyValues(reader);
                    }

                    if (Childs)
                    {
                        string query = string.Empty;

                        AgenteDocumento.DoLOCK(Session());
                        query              = AgenteDocumentos.SELECT(this);
                        reader             = nHManager.Instance.SQLNativeSelect(query, Session());
                        _agente_documentos = AgenteDocumentos.GetChildList(reader);
                    }
                }
            }
            catch (Exception ex)
            {
                if (Transaction() != null)
                {
                    Transaction().Rollback();
                }
                iQExceptionHandler.TreatException(ex, new object[] { criteria.Query });
            }
        }