public void Insert(ViviendaDTO obj)
    {
        int x = 0;

        try
        {
            con = new SqlConnection();
            con = c.Conexion();
            using (con)
            {
                qwery  = "insert Vivienda values(@viv_MaterialTecho,@viv_MaterialParedes,@viv_MaterialPiso,@viv_CocinaIndependiente,@viv_NoCuartos,";
                qwery += "@viv_NoDormitorios,@viv_TipoVivienda,@alu_ID,@viv_Lavadora,@viv_Cisterna,@viv_Refrigeracion,@viv_Drenaje,";
                qwery += "@viv_Compu,@viv_AcceInter,@viv_Auto,@viv_Moto,@viv_Horno,@viv_Electrodomes,@viv_Regadera,@viv_MedLuz,@viv_Dvd,@viv_Radio,@viv_TV,";
                qwery += "@viv_MedioTransporte,@viv_TiempoTraslado,@viv_Luz,@viv_AguaPotable,@viv_EstufaDeGas,@viv_TinacoAgua,@viv_Gas,@viv_Television,@viv_Telefono,@viv_LugarProcedencia,@viv_GastoPasaje)";


                command = new SqlCommand(qwery, con);
                command.Parameters.Add("@viv_MaterialTecho", SqlDbType.VarChar).Value       = obj.viv_MaterialTecho;
                command.Parameters.Add("@viv_MaterialParedes", SqlDbType.VarChar).Value     = obj.viv_MaterialParedes;
                command.Parameters.Add("@viv_MaterialPiso", SqlDbType.VarChar).Value        = obj.viv_MaterialPiso;
                command.Parameters.Add("@viv_CocinaIndependiente", SqlDbType.VarChar).Value = obj.viv_CocinaIndependiente;
                command.Parameters.Add("@viv_NoCuartos", SqlDbType.Int).Value        = obj.viv_NoCuartos;
                command.Parameters.Add("@viv_NoDormitorios", SqlDbType.Int).Value    = obj.viv_NoDormitorios;
                command.Parameters.Add("@viv_TipoVivienda", SqlDbType.VarChar).Value = obj.viv_TipoVivienda;
                command.Parameters.Add("@alu_ID", SqlDbType.Int).Value                   = obj.alu_ID;
                command.Parameters.Add("@viv_Lavadora", SqlDbType.Bit).Value             = obj.viv_Lavadora;
                command.Parameters.Add("@viv_Cisterna", SqlDbType.Bit).Value             = obj.viv_Cisterna;
                command.Parameters.Add("@viv_Refrigeracion", SqlDbType.Bit).Value        = obj.viv_Refrigerador;
                command.Parameters.Add("@viv_Drenaje", SqlDbType.Bit).Value              = obj.viv_Drenaje;
                command.Parameters.Add("@viv_Compu", SqlDbType.Bit).Value                = obj.viv_Compu;
                command.Parameters.Add("@viv_AcceInter", SqlDbType.Bit).Value            = obj.viv_AcceInter;
                command.Parameters.Add("@viv_Auto", SqlDbType.Bit).Value                 = obj.viv_Auto;
                command.Parameters.Add("@viv_Moto", SqlDbType.Bit).Value                 = obj.viv_Moto;
                command.Parameters.Add("@viv_Horno", SqlDbType.Bit).Value                = obj.viv_Horno;
                command.Parameters.Add("@viv_Electrodomes", SqlDbType.Bit).Value         = obj.viv_Electrodomes;
                command.Parameters.Add("@viv_Regadera", SqlDbType.Bit).Value             = obj.viv_Regadera;
                command.Parameters.Add("@viv_MedLuz", SqlDbType.Bit).Value               = obj.viv_MedLuz;
                command.Parameters.Add("@viv_Dvd", SqlDbType.Bit).Value                  = obj.viv_Dvd;
                command.Parameters.Add("@viv_Radio", SqlDbType.Bit).Value                = obj.viv_Radio;
                command.Parameters.Add("@viv_TV", SqlDbType.Bit).Value                   = obj.viv_TV;
                command.Parameters.Add("@viv_MedioTransporte", SqlDbType.VarChar).Value  = obj.viv_MedioTransporte;
                command.Parameters.Add("@viv_TiempoTraslado", SqlDbType.VarChar).Value   = obj.viv_TiempoTraslado;
                command.Parameters.Add("@viv_Luz", SqlDbType.Bit).Value                  = obj.viv_Luz;
                command.Parameters.Add("@viv_AguaPotable", SqlDbType.Bit).Value          = obj.viv_AguaPotable;
                command.Parameters.Add("@viv_EstufaDeGas", SqlDbType.Bit).Value          = obj.viv_EstufaDeGas;
                command.Parameters.Add("@viv_TinacoAgua", SqlDbType.Bit).Value           = obj.viv_TinacoAgua;
                command.Parameters.Add("@viv_Gas", SqlDbType.Bit).Value                  = obj.viv_Gas;
                command.Parameters.Add("@viv_Television", SqlDbType.Bit).Value           = obj.viv_Television;
                command.Parameters.Add("@viv_Telefono", SqlDbType.Bit).Value             = obj.viv_Telefono;
                command.Parameters.Add("@viv_LugarProcedencia", SqlDbType.VarChar).Value = obj.viv_LugarProcedencia;
                command.Parameters.Add("@viv_GastoPasaje", SqlDbType.Money).Value        = obj.viv_GastoPasaje;
                x = command.ExecuteNonQuery();
                con.Close();
            }
        }
        catch (Exception)
        {
            throw;
        }
    }
Beispiel #2
0
        public void Update(AlumnoDTO obj, int id)
        {
            conexion = new UConexion();
            using (conexion.Conexion())
            {
                //,,
                instruccion  = "UPDATE Alumno SET lei_Id=@lei_Id,dis_ID=@dis_ID,esp_ID=@esp_ID,alu_Nombre=@alu_Nombre,alu_ApellidoPaterno=@alu_ApellidoPaterno,";
                instruccion += "alu_ApellidoMaterno=@alu_ApellidoMaterno,alu_Sexo=@alu_Sexo,alu_Edad=@alu_Edad,mod_ID=@mod_ID,alu_Carrera=@alu_Carrera,alu_SegundaOpcion=@alu_SegundaOpcion,alu_TerceraOpcion=@alu_TerceraOpcion WHERE alu_ID=@alu_ID";

                comando = new SqlCommand(instruccion, conexion.Conexion());
                comando.Parameters.Add("@lei_Id", SqlDbType.Int).Value                  = obj.lei_ID;
                comando.Parameters.Add("@dis_ID", SqlDbType.Int).Value                  = obj.dis_ID;
                comando.Parameters.Add("@esp_ID", SqlDbType.Int).Value                  = obj.esp_ID;
                comando.Parameters.Add("@alu_Nombre", SqlDbType.VarChar).Value          = obj.alu_Nombre;
                comando.Parameters.Add("@alu_ApellidoPaterno", SqlDbType.VarChar).Value = obj.alu_ApellidoPaterno;
                comando.Parameters.Add("@alu_ApellidoMaterno", SqlDbType.VarChar).Value = obj.alu_ApellidoMaterno;
                comando.Parameters.Add("@alu_Sexo", SqlDbType.VarChar).Value            = obj.alu_Sexo;
                comando.Parameters.Add("@alu_Edad", SqlDbType.Int).Value                = obj.alu_Edad;
                comando.Parameters.Add("@mod_ID", SqlDbType.Int).Value                  = obj.mod_ID;
                comando.Parameters.Add("@alu_Carrera", SqlDbType.VarChar).Value         = obj.alu_Carrera;
                comando.Parameters.Add("@alu_SegundaOpcion", SqlDbType.VarChar).Value   = obj.alu_SegundaOpcion;
                comando.Parameters.Add("@alu_TerceraOpcion", SqlDbType.VarChar).Value   = obj.alu_TerceraOpcion;
                comando.Parameters.Add("@alu_ID", SqlDbType.Int).Value                  = id;
                comando.ExecuteNonQuery();
            }
        }
Beispiel #3
0
 public void Insert(AntecedentesAluPDTO obj)
 {
     try
     {
         con = new SqlConnection();
         con = c.Conexion();
         using (con)
         {
             int x = 0;
             qwery   = "INSERT AntecedentesAlu values(@alp_Empleo,@alp_EstatusJefeHogar,@alp_NoHijosDepeEcon,@alp_NoPersonasDepeIngr,@alu_ID,@alp_PersonaVives,@alp_NoDiasTrabajaJefeH,@alp_DineroMensualPorTrabajar,@alp_IngresoAlumno)";
             command = new SqlCommand(qwery, con);
             command.Parameters.Add("@alp_Empleo", SqlDbType.VarChar).Value         = obj.alp_Empleo;
             command.Parameters.Add("@alp_EstatusJefeHogar", SqlDbType.Bit).Value   = obj.alp_EstatusJefeHogar;
             command.Parameters.Add("@alp_NoHijosDepeEcon", SqlDbType.Int).Value    = obj.alp_NoHijosDepeEcon;
             command.Parameters.Add("@alp_NoPersonasDepeIngr", SqlDbType.Int).Value = obj.alp_NoPersonasDepeIngr;
             command.Parameters.Add("@alu_ID", SqlDbType.Int).Value = obj.alu_ID;
             command.Parameters.Add("@alp_PersonaVives", SqlDbType.VarChar).Value           = obj.alp_PersonaVives;
             command.Parameters.Add("@alp_NoDiasTrabajaJefeH", SqlDbType.Int).Value         = obj.alp_NoDiasTrabajaJefeH;
             command.Parameters.Add("@alp_DineroMensualPorTrabajar", SqlDbType.Money).Value = obj.alp_DineroMensualPorTrabajar;
             command.Parameters.Add("@alp_IngresoAlumno", SqlDbType.Money).Value            = obj.alp_IngresoAlumno;
             x = command.ExecuteNonQuery();
             con.Close();
         }
     }
     catch (Exception)
     {
         throw;
     }
 }
Beispiel #4
0
        public void UpdateEsc(AlumComDTO obj, int id)
        {
            conexion = new UConexion();
            using (conexion.Conexion())
            {
                int x = 0;
                comando = new SqlCommand();

                instruccion  = "UPDATE AlumCom SET alc_PromBachi=@alc_PromBachi, alc_AnioTerminoBachi=@alc_AnioTerminoBachi, ";
                instruccion += "mun_Escue_ID=@mun_Escue_ID,est_Escue_ID=@est_Escue_ID,esc_ID=@esc_ID,alc_EspBachill=@alc_EspBachill ";
                instruccion += "WHERE alu_ID=@alu_ID";


                comando = new SqlCommand(instruccion, conexion.Conexion());


                comando.Parameters.Add("@alc_PromBachi", SqlDbType.VarChar).Value        = obj.alc_PromBachi;
                comando.Parameters.Add("@alc_EspBachill", SqlDbType.VarChar).Value       = obj.alc_EspBachill;
                comando.Parameters.Add("@mun_Escue_ID", SqlDbType.Int).Value             = obj.mun_Escue_ID;
                comando.Parameters.Add("@est_Escue_ID", SqlDbType.Int).Value             = obj.est_Escue_ID;
                comando.Parameters.Add("@esc_ID", SqlDbType.Int).Value                   = obj.esc_ID;
                comando.Parameters.Add("@alc_AnioTerminoBachi", SqlDbType.VarChar).Value = obj.alc_AnioTerminoBachi;
                comando.Parameters.Add("@alu_ID", SqlDbType.Int).Value                   = id;
                x = comando.ExecuteNonQuery();
            }
        }
        private DataTable sacarDatosCarreras(string id)
        {
            SqlCommand    command;
            SqlConnection con;
            string        qwery;
            DataTable     dtt = null;

            try
            {
                dtt = new DataTable();
                con = new SqlConnection();
                con = cc.Conexion();
                using (con)
                {
                    string query = "SELECT esp_Nombre FROM Especialidades where esp_ID = @esp_ID";
                    command = new SqlCommand(query, con);
                    command.Parameters.Add("@esp_ID", SqlDbType.Int).Value = id;
                    dtt.Load(command.ExecuteReader());
                    con.Close();
                }
            }
            catch (Exception)
            {
                throw;
            }
            return(dtt);
        }
Beispiel #6
0
        public int Insert(AlumnoDTO obj)
        {
            conexion = new UConexion();
            using (conexion.Conexion())
            {
                int id = 0;

                instruccion  = "INSERT INTO Alumno(alu_NumControl,lei_Id,dis_ID,esp_ID,alu_Nombre,alu_ApellidoPaterno,alu_ApellidoMaterno,alu_Sexo,alu_Edad,mod_ID,alu_Carrera,alu_SegundaOpcion,alu_TerceraOpcion)";
                instruccion += "OUTPUT INSERTED.alu_ID VALUES(@alu_NumControl,@lei_Id,@dis_ID,@esp_ID,@alu_Nombre,@alu_ApellidoPaterno,@alu_ApellidoMaterno,@alu_Sexo,@alu_Edad,@mod_ID,@alu_Carrera,@alu_SegundaOpcion,@alu_TerceraOpcion);";
                comando      = new SqlCommand(instruccion, conexion.Conexion());

                comando.Parameters.Add("@alu_NumControl", SqlDbType.VarChar).Value      = obj.alu_NumControl;
                comando.Parameters.Add("@lei_Id", SqlDbType.Int).Value                  = obj.lei_ID;
                comando.Parameters.Add("@dis_ID", SqlDbType.Int).Value                  = obj.dis_ID;
                comando.Parameters.Add("@esp_ID", SqlDbType.Int).Value                  = obj.esp_ID;
                comando.Parameters.Add("@alu_Nombre", SqlDbType.VarChar).Value          = obj.alu_Nombre;
                comando.Parameters.Add("@alu_ApellidoPaterno", SqlDbType.VarChar).Value = obj.alu_ApellidoPaterno;
                comando.Parameters.Add("@alu_ApellidoMaterno", SqlDbType.VarChar).Value = obj.alu_ApellidoMaterno;
                comando.Parameters.Add("@alu_Sexo", SqlDbType.VarChar).Value            = obj.alu_Sexo;
                comando.Parameters.Add("@alu_Edad", SqlDbType.Int).Value                = obj.alu_Edad;
                comando.Parameters.Add("@mod_ID", SqlDbType.Int).Value                  = obj.mod_ID;
                comando.Parameters.Add("@alu_Carrera", SqlDbType.VarChar).Value         = obj.alu_Carrera;
                comando.Parameters.Add("@alu_SegundaOpcion", SqlDbType.VarChar).Value   = obj.alu_SegundaOpcion;
                comando.Parameters.Add("@alu_TerceraOpcion", SqlDbType.VarChar).Value   = obj.alu_TerceraOpcion;
                id = int.Parse(comando.ExecuteScalar().ToString());
                conexion.Conexion().Close();
                return(id);
            }
        }
Beispiel #7
0
        public void UpdateGenerales(AlumComDTO obj, int id)
        {
            int valor = 0;

            conexion = new UConexion();
            using (conexion.Conexion())
            {
                instruccion  = "UPDATE AlumCom SET alc_TipoSangre=@alc_TipoSangre, alc_CveFiliacion=@alc_CveFiliacion, alc_Tutor=@alc_Tutor,";
                instruccion += "alc_ColTut =@alc_ColTut, alc_DirTutor=@alc_DirTutor, est_Tutor_ID=@est_Tutor_ID, mun_Tutor_ID=@mun_Tutor_ID,";
                instruccion += "alc_TelTutor =@alc_TelTutor WHERE alu_ID=@alu_ID";

                comando = new SqlCommand(instruccion, conexion.Conexion());

                comando.Parameters.Add("@alc_TipoSangre", SqlDbType.VarChar).Value   = obj.alc_TipoSangre.ToUpper();
                comando.Parameters.Add("@alc_CveFiliacion", SqlDbType.VarChar).Value = obj.alc_CveFiliacion.ToUpper();
                comando.Parameters.Add("@alc_Tutor", SqlDbType.VarChar).Value        = obj.alc_Tutor.ToUpper();
                comando.Parameters.Add("@alc_ColTut", SqlDbType.VarChar).Value       = obj.alc_ColTut.ToUpper();
                comando.Parameters.Add("@alc_DirTutor", SqlDbType.VarChar).Value     = obj.alc_DirTutor.ToUpper();
                comando.Parameters.Add("@est_Tutor_ID", SqlDbType.VarChar).Value     = obj.est_Tutor_ID;
                comando.Parameters.Add("@mun_Tutor_ID", SqlDbType.Int).Value         = obj.mun_Tutor_ID;
                comando.Parameters.Add("@alc_TelTutor", SqlDbType.VarChar).Value     = obj.alc_TelTutor;
                comando.Parameters.Add("@alu_ID", SqlDbType.Int).Value = obj.alu_ID;

                valor = comando.ExecuteNonQuery();
                conexion.Conexion().Close();
            }
        }
        public void Insert(BecasDTO obj, int id)
        {
            try
            {
                con = new SqlConnection();
                con = c.Conexion();
                using (con)
                {
                    int x = 0;
                    qwery  = "INSERT INTO Becas (bec_EstatusBecado,bec_SuspensionEstudios,bec_BecadoAntes,bec_EstatusOportunidades,alu_ID,bec_Peso,bec_Estatura,bec_IMC)";
                    qwery += "VALUES(@bec_EstatusBecado,@bec_SuspensionEstudios,@bec_BecadoAntes,@bec_EstatusOportunidades,@alu_ID,@bec_Peso,@bec_Estatura,@bec_IMC)";

                    command = new SqlCommand(qwery, con);
                    command.Parameters.Add("@bec_EstatusBecado", SqlDbType.VarChar).Value    = obj.bec_EstatusBecado;
                    command.Parameters.Add("@bec_SuspensionEstudios", SqlDbType.Bit).Value   = obj.bec_SuspenciosEstudios;
                    command.Parameters.Add("@bec_BecadoAntes", SqlDbType.Bit).Value          = obj.bec_BecadoAntes;
                    command.Parameters.Add("@bec_EstatusOportunidades", SqlDbType.Bit).Value = obj.bec_EstatusOportunidades;
                    command.Parameters.Add("@alu_ID", SqlDbType.Int).Value           = obj.alu_ID;
                    command.Parameters.Add("@bec_Peso", SqlDbType.VarChar).Value     = obj.bec_Peso;
                    command.Parameters.Add("@bec_Estatura", SqlDbType.VarChar).Value = obj.bec_Estatura;
                    command.Parameters.Add("@bec_IMC", SqlDbType.VarChar, 10).Value  = obj.bec_IMC;
                    x = command.ExecuteNonQuery();
                    con.Close();
                }
            }
            catch (Exception)
            {
                throw;
            }
        }
Beispiel #9
0
        public void Update(string mun_Nombre)
        {
            conexion = new UConexion();
            using (conexion.Conexion())
            {
                instruccion  = "UPDATE Municipios SET munClave=mun_ID  ";
                instruccion += " WHERE mun_Nombre=@mun_Nombre";

                comando = new SqlCommand(instruccion, conexion.Conexion());
                comando.Parameters.Add("@mun_Nombre", SqlDbType.VarChar).Value = mun_Nombre;

                comando.ExecuteNonQuery();
            }
        }
        public void Update(string esc_Nombre)
        {
            conexion = new UConexion();
            using (conexion.Conexion())
            {
                instruccion  = "UPDATE Escuelas SET esc_Clave=esc_ID  ";
                instruccion += " WHERE esc_Nombre=@esc_Nombre";

                comando = new SqlCommand(instruccion, conexion.Conexion());
                comando.Parameters.Add("@esc_Nombre", SqlDbType.VarChar).Value = esc_Nombre;

                comando.ExecuteNonQuery();
            }
        }
 internal bool SelectExisteMatricula(string matricula)
 {
     bool result = false;
     conexion = new UConexion();
     SqlConnection con = conexion.Conexion();
     using (con)
     {
         instruccion = "SELECT CAST (COUNT(1) AS BIT) FROM [Alumno] WHERE (alu_NumControl = @alu_NumControl)";
         comando = new SqlCommand(instruccion, con);
         comando.Parameters.Add("@alu_NumControl", SqlDbType.VarChar).Value = matricula;
         result = Convert.ToBoolean(comando.ExecuteScalar());
         conexion.Conexion().Close();
     }
     return result;
 }
 public bool SelectExiste(int id)
 {
     bool result = false;
     conexion = new UConexion();
     SqlConnection con = conexion.Conexion();
     using (con)
     {
         instruccion = "SELECT CAST (COUNT(1) AS BIT) FROM [Alumno] WHERE (alu_ID = @alu_ID)";
         comando = new SqlCommand(instruccion, con);
         comando.Parameters.Add("@alu_ID", SqlDbType.Int).Value = id;
         result = Convert.ToBoolean(comando.ExecuteScalar());
         conexion.Conexion().Close();
     }
     return result;
 }
Beispiel #13
0
    public void Insert(IngrEgrFamiliaresDTO obj)
    {
        int x = 0;

        try
        {
            con = new SqlConnection();
            con = c.Conexion();
            using (con)
            {
                qwery   = "INSERT IngrEgrFamiliares ";
                qwery  += "VALUES(@ief_Padre,@ief_Madre,@ief_Usted,@ief_Hermanos,@ief_Conyuge,@ief_Otros,@ief_Total,@ief_Renta,@ief_Alimentacion,";
                qwery  += "@ief_Vestido,@ief_Transporte,@ief_Colegiatura,@ief_Agua,@ief_Electricidad,@ief_GasCombustible,@ief_TotalEgresos,";
                qwery  += "@alu_ID,@ief_OtrosE,@ief_ParentezcoPersona,@ief_CantidadPersona,@ief_FrecuenciaAporte,@ief_GastoDiario,@ief_Conceptos,@ief_Telefono)";
                command = new SqlCommand(qwery, con);
                command.Parameters.Add("@ief_Padre", SqlDbType.Money).Value          = obj.ief_Padre;
                command.Parameters.Add("@ief_Madre", SqlDbType.Money).Value          = obj.ief_Madre;
                command.Parameters.Add("@ief_Usted", SqlDbType.Money).Value          = obj.ief_Usted;
                command.Parameters.Add("@ief_Hermanos", SqlDbType.Money).Value       = obj.ief_Hermanos;
                command.Parameters.Add("@ief_Conyuge", SqlDbType.Money).Value        = obj.ief_Conyugue;
                command.Parameters.Add("@ief_Otros", SqlDbType.Money).Value          = obj.ief_Otros;
                command.Parameters.Add("@ief_Total", SqlDbType.Money).Value          = obj.ief_Total;
                command.Parameters.Add("@ief_Renta", SqlDbType.Money).Value          = obj.ief_Renta;
                command.Parameters.Add("@ief_Alimentacion", SqlDbType.Money).Value   = obj.ief_Alimentacion;
                command.Parameters.Add("@ief_Vestido", SqlDbType.Money).Value        = obj.ief_Vestido;
                command.Parameters.Add("@ief_Transporte", SqlDbType.Money).Value     = obj.ief_Transporte;
                command.Parameters.Add("@ief_Colegiatura", SqlDbType.Money).Value    = obj.ief_Colegiaura;
                command.Parameters.Add("@ief_Agua", SqlDbType.Money).Value           = obj.ief_Agua;
                command.Parameters.Add("@ief_Electricidad", SqlDbType.Money).Value   = obj.ief_Electricidad;
                command.Parameters.Add("@ief_GasCombustible", SqlDbType.Money).Value = obj.ief_GasCombustible;
                command.Parameters.Add("@ief_TotalEgresos", SqlDbType.Money).Value   = obj.ief_TotalEgresos;
                command.Parameters.Add("@alu_ID", SqlDbType.Int).Value       = obj.alu_ID;
                command.Parameters.Add("@ief_OtrosE", SqlDbType.Money).Value = obj.ief_OtrosE;
                command.Parameters.Add("@ief_ParentezcoPersona", SqlDbType.VarChar).Value = obj.ief_ParentezcoPersona;
                command.Parameters.Add("@ief_CantidadPersona", SqlDbType.Money).Value     = obj.ief_CantidadPersona;
                command.Parameters.Add("@ief_FrecuenciaAporte", SqlDbType.VarChar).Value  = obj.ief_FrecuenciaAporte;
                command.Parameters.Add("@ief_GastoDiario", SqlDbType.Money).Value         = obj.ief_GastoDiario;
                command.Parameters.Add("@ief_Conceptos", SqlDbType.VarChar).Value         = obj.ief_Conceptos;
                command.Parameters.Add("@ief_Telefono", SqlDbType.Money).Value            = obj.ief_Telefono;
                x = command.ExecuteNonQuery();
                con.Close();
            }
        }
        catch (Exception)
        {
            throw;
        }
    }
Beispiel #14
0
        public DataTable GetTabla(int id)
        {
            DataTable dt = new DataTable();

            try
            {
                conexion = new UConexion();
                SqlConnection con = conexion.Conexion();
                using (con)
                {
                    string query = "SELECT * FROM Alumno INNER JOIN Especialidades ON Alumno.esp_ID=Especialidades.esp_ID ";
                    query += "WHERE alu_ID = @alu_ID";

                    comando = new SqlCommand(query, con);
                    comando.Parameters.Add("@alu_ID", SqlDbType.Int).Value = id;
                    dt.Load(comando.ExecuteReader());
                    con.Close();
                }
            }
            catch (Exception)
            {
                throw;
            }
            return(dt);
        }
Beispiel #15
0
 public void CargarBecas()
 {
     try
     {
         bec_EstatusBecado.Items.Clear();
         con = new SqlConnection();
         c   = new UConexion();
         con = c.Conexion();
         using (con)
         {
             string        qwery   = "select * from TipoBeca";
             SqlCommand    comando = new SqlCommand(qwery, con);
             SqlDataReader dr      = comando.ExecuteReader();
             if (dr.HasRows)
             {
                 int x = 0;
                 while (dr.Read())
                 {
                     if (x != 0)
                     {
                         string bec_Id     = dr["bec_ID"].ToString();
                         string bec_Nombre = dr["bec_Nombre"].ToString();
                         bec_EstatusBecado.Items.Add(new ListItem(bec_Nombre, bec_Id));
                     }
                     x++;
                 }
             }
             con.Close();
         }
     }
     catch (Exception)
     {
         throw;
     }
 }
        public DataSet Consult(string esc_Nombre)
        {
            DataTable dt = new DataTable();
            DataSet   ds = new DataSet();

            try
            {
                conexion = new UConexion();
                SqlConnection con = conexion.Conexion();
                using (con)
                {
                    string query = "SELECT * FROM Escuelas ";
                    query += "WHERE esc_Nombre = @esc_Nombre";

                    comando = new SqlCommand(query, con);
                    comando.Parameters.Add("@esc_Nombre", SqlDbType.VarChar).Value = esc_Nombre;
                    dt.Load(comando.ExecuteReader());
                    ds.Tables.Add(dt);
                    con.Close();
                }
            }
            catch (Exception)
            {
                throw;
            }
            return(ds);
        }
Beispiel #17
0
        public void Update(AlumnoDTO obj, int id)
        {
            conexion = new UConexion();
            using (conexion.Conexion())
            {
                instruccion  = "UPDATE Alumno SET lei_Id=@lei_Id,dis_ID=@dis_ID,alu_Edad=@alu_Edad ";
                instruccion += " WHERE alu_ID=@alu_ID";

                comando = new SqlCommand(instruccion, conexion.Conexion());
                comando.Parameters.Add("@lei_Id", SqlDbType.Int).Value   = obj.lei_ID;
                comando.Parameters.Add("@dis_ID", SqlDbType.Int).Value   = obj.dis_ID;
                comando.Parameters.Add("@alu_Edad", SqlDbType.Int).Value = obj.alu_Edad;
                comando.Parameters.Add("@alu_ID", SqlDbType.Int).Value   = id;
                comando.ExecuteNonQuery();
                conexion.Conexion().Close();
            }
        }
Beispiel #18
0
        public void Insert(string mun_Nombre, int est_ID)
        {
            conexion = new UConexion();
            using (conexion.Conexion())
            {
                int x = 0;
                comando     = new SqlCommand();
                instruccion = "INSERT INTO Municipios(mun_Nombre,est_ID) VALUES(@mun_Nombre,@est_ID)";


                comando = new SqlCommand(instruccion, conexion.Conexion());
                comando.Parameters.Add("@est_ID", SqlDbType.Int).Value         = est_ID;
                comando.Parameters.Add("@mun_Nombre", SqlDbType.VarChar).Value = mun_Nombre;


                x = comando.ExecuteNonQuery();
            }
        }
Beispiel #19
0
        public void Insert(string est_Nombre)
        {
            conexion = new UConexion();
            using (conexion.Conexion())
            {
                int x = 0;
                comando     = new SqlCommand();
                instruccion = "INSERT INTO Estados(est_Nombre) VALUES(@est_Nombre)";


                comando = new SqlCommand(instruccion, conexion.Conexion());

                comando.Parameters.Add("@est_Nombre", SqlDbType.VarChar).Value = est_Nombre;


                x = comando.ExecuteNonQuery();
            }
        }
        public void Insert(AlumComDTO obj, int id)
        {
            conexion = new UConexion();
            using (conexion.Conexion())
            {
                int x = 0;
                comando      = new SqlCommand();
                instruccion  = "INSERT INTO AlumCom(alu_ID,alc_Curp,alc_Correo,alc_Calle,alc_Colonia,";
                instruccion += "alc_Localidad,alc_NumInt,alc_NumExt,alc_CodPostal,est_Proced_ID,";
                instruccion += "alc_FechaNac,mun_Natal_ID, est_Natal_ID,alc_PromBachi,pro_ID,mun_Proced_ID,alc_EdoCivil,alc_AnioTerminoBachi,";
                instruccion += "mun_Escue_ID,est_Escue_ID,alc_Celular,esc_ID, alc_Tel,alc_Facebook)";
                instruccion += " VALUES(@alu_ID,@alc_Curp,@alc_Correo,@alc_Calle,@alc_Colonia,@alc_Localidad,@alc_NumInt,@alc_NumExt,@alc_CodPostal,@est_Proced_ID,";
                instruccion += "@alc_FechaNac,@mun_Natal_ID,@est_Natal_ID,@alc_PromBachi,@pro_ID,@mun_Proced_ID,@alc_EdoCivil,@alc_AnioTerminoBachi,";
                instruccion += "@mun_Escue_ID,@est_Escue_ID,@alc_Celular,@esc_ID,@alc_Tel,@alc_Facebook)";

                comando = new SqlCommand(instruccion, conexion.Conexion());
                comando.Parameters.Add("@alu_ID", SqlDbType.Int).Value                   = id;
                comando.Parameters.Add("@alc_Curp", SqlDbType.VarChar).Value             = obj.alc_Curp;
                comando.Parameters.Add("@alc_Correo", SqlDbType.VarChar).Value           = obj.alc_Correo;
                comando.Parameters.Add("@alc_Calle", SqlDbType.VarChar).Value            = obj.alc_Calle;
                comando.Parameters.Add("@alc_Colonia", SqlDbType.VarChar).Value          = obj.alc_Colonia;
                comando.Parameters.Add("@alc_Localidad", SqlDbType.VarChar).Value        = obj.alc_Localidad;
                comando.Parameters.Add("@alc_NumInt", SqlDbType.VarChar).Value           = obj.alc_NumInt;
                comando.Parameters.Add("@alc_NumExt", SqlDbType.VarChar).Value           = obj.alc_NumExt;
                comando.Parameters.Add("@alc_CodPostal", SqlDbType.VarChar).Value        = obj.alc_CodPostal;
                comando.Parameters.Add("@est_Proced_ID", SqlDbType.Int).Value            = obj.est_Proced_ID;
                comando.Parameters.Add("@alc_FechaNac", SqlDbType.DateTime).Value        = obj.alc_FechaNac;
                comando.Parameters.Add("@mun_Natal_ID", SqlDbType.Int).Value             = obj.mun_Natatl_ID;
                comando.Parameters.Add("@est_Natal_ID", SqlDbType.Int).Value             = obj.est_Natatl_ID;
                comando.Parameters.Add("@alc_PromBachi", SqlDbType.VarChar).Value        = obj.alc_PromBachi;
                comando.Parameters.Add("@pro_ID", SqlDbType.VarChar).Value               = obj.pro_ID;
                comando.Parameters.Add("@mun_Proced_ID", SqlDbType.VarChar).Value        = obj.mun_Proced_ID;
                comando.Parameters.Add("@alc_EdoCivil", SqlDbType.Char).Value            = obj.alc_EdoCivil;
                comando.Parameters.Add("@alc_AnioTerminoBachi", SqlDbType.Char, 4).Value = obj.alc_AnioTerminoBachi;
                comando.Parameters.Add("@mun_Escue_ID", SqlDbType.Int).Value             = obj.mun_Escue_ID;
                comando.Parameters.Add("@est_Escue_ID", SqlDbType.Int).Value             = obj.est_Escue_ID;
                comando.Parameters.Add("@alc_Celular", SqlDbType.VarChar).Value          = obj.alc_Celular;
                comando.Parameters.Add("@esc_ID", SqlDbType.Int).Value                   = obj.esc_ID;
                comando.Parameters.Add("@alc_Tel", SqlDbType.VarChar, 15).Value          = obj.alc_Tel;
                // comando.Parameters.Add("@lei_ID", SqlDbType.Int).Value = obj.lei_ID;
                comando.Parameters.Add("@alc_Facebook", SqlDbType.VarChar).Value = obj.alc_Fcaebook;
                x = comando.ExecuteNonQuery();
            }
        }
 public void Insert(DatosFamiliaresDTO obj, int id)
 {
     conexion = new UConexion();
     using (conexion.Conexion())
     {
         instruccion = "INSERT DatosFamiliares(daf_Nombre,daf_Edad,daf_Escolaridad,alu_ID,daf_Parentezco,alc_OcupaFam,alc_NoHijos) VALUES(@daf_Nombre,@daf_Edad,@daf_Escolaridad,@alu_ID,@daf_Parentezco,@alc_OcupaFam,@alc_NoHijos)";
         comando     = new SqlCommand(instruccion, conexion.Conexion());
         comando.Parameters.Add("@daf_Nombre", SqlDbType.VarChar).Value      = obj.daf_Nombre.ToUpper();
         comando.Parameters.Add("@daf_Edad", SqlDbType.Int).Value            = obj.daf_Edad;
         comando.Parameters.Add("@daf_Escolaridad", SqlDbType.VarChar).Value = obj.daf_Escolaridad.ToUpper();
         comando.Parameters.Add("@alu_ID", SqlDbType.Int).Value             = id;
         comando.Parameters.Add("@daf_Parentezco", SqlDbType.VarChar).Value = obj.daf_Parentezco.ToUpper();
         comando.Parameters.Add("@alc_OcupaFam", SqlDbType.VarChar).Value   = obj.daf_Ocupacion.ToUpper();
         comando.Parameters.Add("@alc_NoHijos", SqlDbType.Int).Value        = obj.daf_NoHijos;
         int x = 0;
         x = comando.ExecuteNonQuery();
         conexion.Conexion().Close();
     }
 }
        public int Insert(AlumnoDTO obj)
        {
            conexion = new UConexion();
            using (conexion.Conexion())
            {
                int id = 0;

                instruccion = "INSERT INTO Alumno(lei_Id,dis_ID,alu_Edad)";
                instruccion += "OUTPUT INSERTED.alu_ID VALUES(@lei_Id,@dis_ID,@alu_Edad);";
                comando = new SqlCommand(instruccion, conexion.Conexion());

                comando.Parameters.Add("@lei_Id", SqlDbType.Int).Value = obj.lei_ID;
                comando.Parameters.Add("@dis_ID", SqlDbType.Int).Value = obj.dis_ID;
                comando.Parameters.Add("@alu_Edad", SqlDbType.Int).Value = obj.alu_Edad;
                id = int.Parse(comando.ExecuteScalar().ToString());
                conexion.Conexion().Close();
                return id;
            }
        }
 public void Insert(DatosFamiliaresDTO obj, int id)
 {
     conexion = new UConexion();
     using (conexion.Conexion())
     {
         instruccion = "INSERT DatosFamiliares VALUES(@daf_Nombre,@daf_Edad,@daf_Escolaridad,@daf_EdoCivil,@alu_ID,@daf_Parentezco,@ocu_ID)";
         comando     = new SqlCommand(instruccion, conexion.Conexion());
         comando.Parameters.Add("@daf_Nombre", SqlDbType.VarChar).Value      = obj.daf_Nombre;
         comando.Parameters.Add("@daf_Edad", SqlDbType.Int).Value            = obj.daf_Edad;
         comando.Parameters.Add("@daf_Escolaridad", SqlDbType.VarChar).Value = obj.daf_Escolaridad;
         comando.Parameters.Add("@daf_EdoCivil", SqlDbType.VarChar).Value    = obj.daf_EdoCivil;
         comando.Parameters.Add("@alu_ID", SqlDbType.Int).Value             = id;
         comando.Parameters.Add("@daf_Parentezco", SqlDbType.VarChar).Value = obj.daf_Parentezco;
         comando.Parameters.Add("@ocu_ID", SqlDbType.Int).Value             = obj.ocu_ID;
         int x = 0;
         x = comando.ExecuteNonQuery();
         conexion.Conexion().Close();
     }
 }
        public void Insert(int enc_ID, int alu_ID)
        {
            con = new SqlConnection();
            con = c.Conexion();
            using (con)
            {
                int x = 0;
                comando = new SqlCommand();
                string instruccion = "INSERT INTO Encuestas(alu_ID,enc_ID,enc_Contestado) VALUES (@alu_ID,@enc_ID,@enc_Contestado)";


                comando = new SqlCommand(instruccion, con);
                comando.Parameters.Add("@alu_ID", SqlDbType.Int).Value         = alu_ID;
                comando.Parameters.Add("@enc_ID", SqlDbType.VarChar).Value     = enc_ID;
                comando.Parameters.Add("@enc_Contestado", SqlDbType.Bit).Value = true;

                x = comando.ExecuteNonQuery();
            }
        }
        public void Update(AlumComDTO obj, int id)
        {
            int valor = 0;

            conexion = new UConexion();
            using (conexion.Conexion())
            {
                instruccion  = "UPDATE AlumCom SET alc_Curp=@alc_Curp, alc_Correo=@alc_Correo, alc_Calle=@alc_Calle, alc_Colonia=@alc_Colonia,";
                instruccion += "alc_Localidad=@alc_Localidad, alc_NumInt=@alc_NumInt, alc_NumExt=@alc_NumExt, alc_CodPostal=@alc_CodPostal,";
                instruccion += "est_Proced_ID=@est_Proced_ID, alc_FechaNac=@alc_FechaNac, mun_Natal_ID=@mun_Natal_ID, est_Natal_ID=@est_Natal_ID,";
                instruccion += "alc_PromBachi=@alc_PromBachi, pro_ID=@pro_ID, mun_Proced_ID=@mun_Proced_ID, alc_EdoCivil=@alc_EdoCivil, alc_AnioTerminoBachi=@alc_AnioTerminoBachi,";
                instruccion += "mun_Escue_ID=@mun_Escue_ID,est_Escue_ID=@est_Escue_ID, alc_Celular=@alc_Celular, esc_ID=@esc_ID,alc_Tel=@alc_Tel,lei_ID=@lei_ID,alc_Facebook=@alc_Facebook WHERE alu_ID=@alu_ID";
                comando      = new SqlCommand(instruccion, conexion.Conexion());
                comando.Parameters.Add("@alc_Curp", SqlDbType.VarChar).Value             = obj.alc_Curp;
                comando.Parameters.Add("@alc_Correo", SqlDbType.VarChar).Value           = obj.alc_Correo;
                comando.Parameters.Add("@alc_Calle", SqlDbType.VarChar).Value            = obj.alc_Calle;
                comando.Parameters.Add("@alc_Colonia", SqlDbType.VarChar).Value          = obj.alc_Colonia;
                comando.Parameters.Add("@alc_Localidad", SqlDbType.VarChar).Value        = obj.alc_Localidad;
                comando.Parameters.Add("@alc_NumInt", SqlDbType.VarChar).Value           = obj.alc_NumInt;
                comando.Parameters.Add("@alc_NumExt", SqlDbType.VarChar).Value           = obj.alc_NumExt;
                comando.Parameters.Add("@alc_CodPostal", SqlDbType.VarChar).Value        = obj.alc_CodPostal;
                comando.Parameters.Add("@est_Proced_ID", SqlDbType.Int).Value            = obj.est_Proced_ID;
                comando.Parameters.Add("@alc_FechaNac", SqlDbType.DateTime).Value        = obj.alc_FechaNac;
                comando.Parameters.Add("@mun_Natal_ID", SqlDbType.Int).Value             = obj.mun_Natatl_ID;
                comando.Parameters.Add("@est_Natal_ID", SqlDbType.Int).Value             = obj.est_Natatl_ID;
                comando.Parameters.Add("@alc_PromBachi", SqlDbType.VarChar).Value        = obj.alc_PromBachi;
                comando.Parameters.Add("@pro_ID", SqlDbType.VarChar).Value               = obj.pro_ID;
                comando.Parameters.Add("@mun_Proced_ID", SqlDbType.VarChar).Value        = obj.mun_Proced_ID;
                comando.Parameters.Add("@alc_EdoCivil", SqlDbType.Char).Value            = obj.alc_EdoCivil;
                comando.Parameters.Add("@alc_AnioTerminoBachi", SqlDbType.Char, 4).Value = obj.alc_AnioTerminoBachi;
                comando.Parameters.Add("@mun_Escue_ID", SqlDbType.Int).Value             = obj.mun_Escue_ID;
                comando.Parameters.Add("@est_Escue_ID", SqlDbType.Int).Value             = obj.est_Escue_ID;
                comando.Parameters.Add("@alc_Celular", SqlDbType.VarChar).Value          = obj.alc_Celular;
                comando.Parameters.Add("@esc_ID", SqlDbType.Int).Value           = obj.esc_ID;
                comando.Parameters.Add("@alc_Tel", SqlDbType.VarChar, 15).Value  = obj.alc_Tel;
                comando.Parameters.Add("@lei_ID", SqlDbType.Int).Value           = obj.lei_ID;
                comando.Parameters.Add("@alc_Facebook", SqlDbType.VarChar).Value = obj.alc_Fcaebook;
                comando.Parameters.Add("@alu_ID", SqlDbType.Int).Value           = id;
                valor = comando.ExecuteNonQuery();
                conexion.Conexion().Close();
            }
        }
        public void Update(DatosFamiliaresDTO obj, int id)
        {
            conexion = new UConexion();
            using (conexion.Conexion())
            {
                instruccion  = "UPDATE DatosFamiliares SET daf_Nombre=@daf_Nombre,daf_Edad=@daf_Edad,daf_Parentezco=@daf_Parentezco";
                instruccion += ",daf_Escolaridad=@daf_Escolaridad,daf_EdoCivil=@daf_EdoCivil,ocu_ID=@ocu_ID WHERE alu_ID=@alu_ID and daf_NoFamiliar=@NoFamiliar";
                comando      = new SqlCommand(instruccion, conexion.Conexion());

                comando.Parameters.Add("@daf_Nombre", SqlDbType.VarChar).Value      = obj.daf_Nombre;
                comando.Parameters.Add("@daf_Edad", SqlDbType.Int).Value            = obj.daf_Edad;
                comando.Parameters.Add("@daf_Parentezco", SqlDbType.VarChar).Value  = obj.daf_Parentezco;
                comando.Parameters.Add("@daf_Escolaridad", SqlDbType.VarChar).Value = obj.daf_Escolaridad;
                comando.Parameters.Add("@daf_EdoCivil", SqlDbType.VarChar).Value    = obj.daf_EdoCivil;
                comando.Parameters.Add("@ocu_ID", SqlDbType.Int).Value         = obj.ocu_ID;
                comando.Parameters.Add("@alu_ID", SqlDbType.Int).Value         = id;
                comando.Parameters.Add("@daf_NoFamiliar", SqlDbType.Int).Value = id;
                comando.ExecuteNonQuery();
            }
        }
Beispiel #27
0
        public void Update(AlumComDTO obj, int id)
        {
            int valor = 0;

            conexion = new UConexion();
            using (conexion.Conexion())
            {
                instruccion  = "UPDATE AlumCom SET alc_Curp=@alc_Curp, alc_Correo=@alc_Correo, alc_Direccion=@alc_Direccion, alc_Colonia=@alc_Colonia,";
                instruccion += "alc_LugarProce=@alc_LugarProce, alc_CodPostal=@alc_CodPostal,alc_Localidad=@alc_Localidad ,";
                instruccion += "est_Proced_ID=@est_Proced_ID, alc_FechaNac=@alc_FechaNac, mun_Natal_ID=@mun_Natal_ID, est_Natal_ID=@est_Natal_ID,";
                instruccion += "mun_Proced_ID=@mun_Proced_ID,alc_EdoCivil=@alc_EdoCivil,alc_LugarNaci=@alc_LugarNaci,alc_Celular=@alc_Celular,";
                instruccion += "alc_Tel=@alc_Tel,lei_ID=@lei_ID,alc_Facebook=@alc_Facebook,alc_NumExt=@alc_NumExt,alc_NumInt=@alc_NumInt WHERE alu_ID=@alu_ID";
                comando      = new SqlCommand(instruccion, conexion.Conexion());
                comando.Parameters.Add("@alc_Curp", SqlDbType.VarChar).Value       = obj.alc_Curp.ToUpper();
                comando.Parameters.Add("@alc_Correo", SqlDbType.VarChar).Value     = obj.alc_Correo;
                comando.Parameters.Add("@alc_Direccion", SqlDbType.VarChar).Value  = obj.alc_Calle.ToUpper();
                comando.Parameters.Add("@alc_Colonia", SqlDbType.VarChar).Value    = obj.alc_Colonia.ToUpper();
                comando.Parameters.Add("@alc_Localidad", SqlDbType.VarChar).Value  = obj.alc_Localidad.ToUpper();
                comando.Parameters.Add("@alc_CodPostal", SqlDbType.VarChar).Value  = obj.alc_CodPostal;
                comando.Parameters.Add("@est_Proced_ID", SqlDbType.Int).Value      = obj.est_Proced_ID;
                comando.Parameters.Add("@alc_FechaNac", SqlDbType.DateTime).Value  = obj.alc_FechaNac;
                comando.Parameters.Add("@mun_Natal_ID", SqlDbType.Int).Value       = obj.mun_Natatl_ID;
                comando.Parameters.Add("@est_Natal_ID", SqlDbType.Int).Value       = obj.est_Natatl_ID;
                comando.Parameters.Add("@mun_Proced_ID", SqlDbType.Int).Value      = obj.mun_Proced_ID;
                comando.Parameters.Add("@alc_EdoCivil", SqlDbType.Char).Value      = obj.alc_EdoCivil;
                comando.Parameters.Add("@alc_LugarProce", SqlDbType.VarChar).Value = obj.alc_Localidad.ToUpper();
                // comando.Parameters.Add("@alc_TelCasa", SqlDbType.VarChar).Value = obj.alc_TelCasa;

                comando.Parameters.Add("@alc_Celular", SqlDbType.VarChar).Value   = obj.alc_Celular;
                comando.Parameters.Add("@alc_Tel", SqlDbType.VarChar, 15).Value   = obj.alc_Celular;
                comando.Parameters.Add("@lei_ID", SqlDbType.Int).Value            = obj.lei_ID;
                comando.Parameters.Add("@alc_Facebook", SqlDbType.VarChar).Value  = obj.alc_Fcaebook.ToUpper();
                comando.Parameters.Add("@alc_LugarNaci", SqlDbType.VarChar).Value = obj.alc_LugarNaci;
                comando.Parameters.Add("@alu_ID", SqlDbType.Int).Value            = id;
                comando.Parameters.Add("@alc_NumExt", SqlDbType.VarChar).Value    = obj.alc_NumExt;
                comando.Parameters.Add("@alc_NumInt", SqlDbType.VarChar).Value    = obj.alc_NumInt;

                valor = comando.ExecuteNonQuery();
                conexion.Conexion().Close();
            }
        }
Beispiel #28
0
        public void Insert(AlumComDTO obj, int id)
        {
            conexion = new UConexion();
            using (conexion.Conexion())
            {
                int x = 0;
                comando      = new SqlCommand();
                instruccion  = "INSERT INTO AlumCom(alu_ID,alc_Curp,alc_Correo,alc_Direccion,alc_Colonia,alc_LugarProce,";
                instruccion += "alc_CodPostal,est_Proced_ID,alc_FechaNac,mun_Natal_ID, est_Natal_ID,mun_Proced_ID,alc_EdoCivil,";
                instruccion += "alc_Celular, alc_Tel,alc_Facebook,alc_LugarNaci,alc_Localidad)";
                instruccion += " VALUES(@alu_ID,@alc_Curp,@alc_Correo,@alc_Direccion,@alc_Colonia,@alc_LugarProce,";
                instruccion += "@alc_CodPostal,@est_Proced_ID,@alc_FechaNac,@mun_Natal_ID,@est_Natal_ID,@mun_Proced_ID,@alc_EdoCivil,";
                instruccion += "@alc_Celular,@alc_Tel,@alc_Facebook,@alc_LugarNaci,@alc_Localidad)";

                comando = new SqlCommand(instruccion, conexion.Conexion());
                comando.Parameters.Add("@alu_ID", SqlDbType.Int).Value             = id;
                comando.Parameters.Add("@alc_Curp", SqlDbType.VarChar).Value       = obj.alc_Curp.ToUpper();
                comando.Parameters.Add("@alc_Correo", SqlDbType.VarChar).Value     = obj.alc_Correo;
                comando.Parameters.Add("@alc_Direccion", SqlDbType.VarChar).Value  = obj.alc_Calle.ToUpper();
                comando.Parameters.Add("@alc_Colonia", SqlDbType.VarChar).Value    = obj.alc_Colonia.ToUpper();
                comando.Parameters.Add("@alc_LugarProce", SqlDbType.VarChar).Value = obj.alc_Localidad.ToUpper();
                comando.Parameters.Add("@alc_CodPostal", SqlDbType.VarChar).Value  = obj.alc_CodPostal;
                comando.Parameters.Add("@est_Proced_ID", SqlDbType.Int).Value      = obj.est_Proced_ID;
                comando.Parameters.Add("@alc_FechaNac", SqlDbType.DateTime).Value  = obj.alc_FechaNac;
                comando.Parameters.Add("@mun_Natal_ID", SqlDbType.Int).Value       = obj.mun_Natatl_ID;
                comando.Parameters.Add("@est_Natal_ID", SqlDbType.Int).Value       = obj.est_Natatl_ID;
                comando.Parameters.Add("@mun_Proced_ID", SqlDbType.Int).Value      = obj.mun_Proced_ID;
                comando.Parameters.Add("@alc_EdoCivil", SqlDbType.Char).Value      = obj.alc_EdoCivil;
                comando.Parameters.Add("@alc_Celular", SqlDbType.VarChar).Value    = obj.alc_Celular;
                comando.Parameters.Add("@alc_Tel", SqlDbType.VarChar, 15).Value    = obj.alc_Tel;
                comando.Parameters.Add("@lei_ID", SqlDbType.Int).Value             = obj.lei_ID;
                comando.Parameters.Add("@alc_Localidad", SqlDbType.Int).Value      = obj.lei_ID;
                comando.Parameters.Add("@alc_Facebook", SqlDbType.VarChar).Value   = obj.alc_Fcaebook.ToUpper();
                comando.Parameters.Add("@alc_LugarNaci", SqlDbType.VarChar).Value  = obj.alc_LugarNaci;
                comando.Parameters.Add("@alc_NumExt", SqlDbType.VarChar).Value     = obj.alc_NumExt;
                comando.Parameters.Add("@est_NumInt", SqlDbType.VarChar).Value     = obj.alc_NumInt;
                x = comando.ExecuteNonQuery();
                conexion.Conexion().Close();
            }
        }
Beispiel #29
0
        public int ObtenerID(string matricula)
        {
            conexion = new UConexion();
            SqlConnection con = conexion.Conexion();
            int           id  = 0;

            using (con)
            {
                instruccion = "SELECT alu_ID from Alumno WHERE (alu_NumControl = @alu_NumControl)";
                comando     = new SqlCommand(instruccion, con);
                comando.Parameters.Add("@alu_NumControl", SqlDbType.VarChar).Value = matricula;
                SqlDataReader rd = comando.ExecuteReader();
                if (rd.HasRows)
                {
                    while (rd.Read())
                    {
                        id = rd.GetInt32(0);
                    }
                }
                conexion.Conexion().Close();
            }
            return(id);
        }
Beispiel #30
0
        public bool ExisteUsuario(string alu_NumControl)
        {
            bool result = false;

            try
            {
                con = new SqlConnection();
                con = c.Conexion();
                using (con)
                {
                    string     qwery   = "SELECT CAST(COUNT(1) AS BIT) FROM [Alumno] WHERE alu_NumControl = @alu_NumControl";
                    SqlCommand command = new SqlCommand(qwery, con);
                    command.Parameters.Add("@alu_NumControl", SqlDbType.VarChar).Value = alu_NumControl;
                    result = Convert.ToBoolean(command.ExecuteScalar());
                    con.Close();
                }
            }
            catch (Exception ex)
            {
                throw;
            }
            return(result);
        }