コード例 #1
0
ファイル: DSectores.cs プロジェクト: alucard2001/SysPrestamos
        //Método BuscarNombre
        public DataTable BuscarNombre(DSectores Sectores)
        {
            DataTable     DtResultado = new DataTable("Sectores");
            SqlConnection SqlCon      = new SqlConnection();

            try
            {
                SqlCon.ConnectionString = Connetion.Cn;
                SqlCommand SqlCmd = new SqlCommand();
                SqlCmd.Connection  = SqlCon;
                SqlCmd.CommandText = "Prestamos.spbuscar_Sectores_Provincias";
                SqlCmd.CommandType = CommandType.StoredProcedure;

                SqlParameter ParTextoBuscar = new SqlParameter();
                ParTextoBuscar.ParameterName = "@textobuscar";
                ParTextoBuscar.SqlDbType     = SqlDbType.VarChar;
                ParTextoBuscar.Size          = 50;
                ParTextoBuscar.Value         = Sectores.TextoBuscar;
                SqlCmd.Parameters.Add(ParTextoBuscar);

                SqlDataAdapter SqlDat = new SqlDataAdapter(SqlCmd);
                SqlDat.Fill(DtResultado);
            }
            catch (Exception ex)
            {
                DtResultado = null;
            }
            return(DtResultado);
        }
コード例 #2
0
ファイル: DSectores.cs プロジェクト: alucard2001/SysPrestamos
        //Método Insertar
        public string Insertar(DSectores Sectores)
        {
            string        rpta   = "";
            SqlConnection SqlCon = new SqlConnection();

            try
            {
                //Código
                SqlCon.ConnectionString = Connetion.Cn;
                SqlCon.Open();
                //Establecer el Comando
                SqlCommand SqlCmd = new SqlCommand();
                SqlCmd.Connection  = SqlCon;
                SqlCmd.CommandText = "Prestamos.spinsertar_Sectores";
                SqlCmd.CommandType = CommandType.StoredProcedure;

                SqlParameter ParCodigo_Sector = new SqlParameter();
                ParCodigo_Sector.ParameterName = "@codigo";
                ParCodigo_Sector.SqlDbType     = SqlDbType.Int;
                ParCodigo_Sector.Direction     = ParameterDirection.Output;
                SqlCmd.Parameters.Add(ParCodigo_Sector);

                SqlParameter ParNombre = new SqlParameter();
                ParNombre.ParameterName = "@nombre";
                ParNombre.SqlDbType     = SqlDbType.VarChar;
                ParNombre.Size          = 50;
                ParNombre.Value         = Sectores.Sector;
                SqlCmd.Parameters.Add(ParNombre);

                SqlParameter ParCodigoProvincia = new SqlParameter();
                ParCodigoProvincia.ParameterName = "@codigo_provincia";
                ParCodigoProvincia.SqlDbType     = SqlDbType.Int;
                ParCodigoProvincia.Value         = Sectores.CodigoProvincia;
                SqlCmd.Parameters.Add(ParCodigoProvincia);

                //Ejecutamos nuestro comando

                rpta = SqlCmd.ExecuteNonQuery() == 1 ? "OK" : "NO se Ingreso el Registro";
            }
            catch (Exception ex)
            {
                rpta = ex.Message;
            }
            finally
            {
                if (SqlCon.State == ConnectionState.Open)
                {
                    SqlCon.Close();
                }
            }
            return(rpta);
        }
コード例 #3
0
ファイル: DSectores.cs プロジェクト: alucard2001/SysPrestamos
        //Método Eliminar
        public string Eliminar(DSectores Sectores)
        {
            string        rpta   = "";
            SqlConnection SqlCon = new SqlConnection();

            try
            {
                //Código
                SqlCon.ConnectionString = Connetion.Cn;
                SqlCon.Open();
                //Establecer el Comando
                SqlCommand SqlCmd = new SqlCommand();
                SqlCmd.Connection  = SqlCon;
                SqlCmd.CommandText = "Prestamos.speliminar_Sectores";
                SqlCmd.CommandType = CommandType.StoredProcedure;


                SqlParameter ParCodigo_Sector = new SqlParameter();
                ParCodigo_Sector.ParameterName = "@codigo";
                ParCodigo_Sector.SqlDbType     = SqlDbType.Int;
                ParCodigo_Sector.Value         = Sectores.CodigoSector;
                SqlCmd.Parameters.Add(ParCodigo_Sector);


                //Ejecutamos nuestro comando

                rpta = SqlCmd.ExecuteNonQuery() == 1 ? "OK" : "NO se Elimino el Registro";
            }
            catch (Exception ex)
            {
                rpta = ex.Message;
            }
            finally
            {
                if (SqlCon.State == ConnectionState.Open)
                {
                    SqlCon.Close();
                }
            }
            return(rpta);
        }