private void solicitar_permisos() { Conector c = new Conector(sServidor, sNombreBD, sUsuario, sPass); c.OpenConnection(); MySqlDataReader Reader = c.consultarConRetorno("select U.nombre_usuario, ap.nombre_aplicacion, D.ingresar, D.modificar, D.eliminar, D.imprimir,D.consultar from Usuario U, Aplicacion ap, Detalle_aplicacion_derecho D where D.id_usuario = " + "14" + " and D.id_usuario = U.id_usuario and D.id_aplicacion = ap.id_aplicacion; "); if (Reader.Read()) { I = Convert.ToInt32(Reader["ingresar"]); M = Convert.ToInt32(Reader["modificar"]); Im = Convert.ToInt32(Reader["imprimir"]); C = Convert.ToInt32(Reader["consultar"]); E = Convert.ToInt32(Reader["eliminar"]); } MessageBox.Show("Se han actualizado los permisos"); if (I == 1) { btn_guardar.Enabled = true; } else { btn_guardar.Enabled = false; } if (M == 1) { btn_modificar.Enabled = true; } else { btn_modificar.Enabled = false; } if (Im == 1) { btn_imprimir.Enabled = true; } else { btn_imprimir.Enabled = false; } if (C == 1) { btn_buscar.Enabled = true; } else { btn_buscar.Enabled = false; } if (E == 1) { btn_eliminar.Enabled = true; } else { btn_eliminar.Enabled = false; } }
private void button4_Click(object sender, EventArgs e) { if (this.NavGuardar != null) { this.NavGuardar(this, e); } con = new Conector(sServidor, sNombreBD, sUsuario, sPass, sAppNumero, Globales.SQL, Globales.AccionBoton, sNom_Usuario); con.OpenConnection(); }
public string getDatoManipulable(int posicion) { String resultado = ""; con = new Conector(servidor, nombreBD, usuario, pass); con.OpenConnection(); DataTable res = con.informacion("Select * FROM users"); DataSet data = new DataSet("NAV"); data.Tables.Add(res); resultado = data.Tables[0].Rows[iPosicion][1].ToString(); MessageBox.Show("Dato : " + resultado); return(resultado); }
public void getDatoManipulable(int posicion) { String resultado = ""; con = new Conector(sServidor, sNombreBD, sUsuario, sPass); con.OpenConnection(); DataTable res = con.informacion("Select * FROM " + sNombreTabla); DataSet data = new DataSet("NAV"); data.Tables.Add(res); iFilastotal = data.Tables[0].Rows.Count; iColumnasTotal = data.Tables[0].Columns.Count; for (int i = 0; i < iColumnasTotal; i++) { resultado += data.Tables[0].Rows[iPosicion][i].ToString(); } MessageBox.Show("Dato : " + resultado); this.sResult = resultado; }
private void solicitar_permisos() { Conector c = new Conector(sServidor, sNombreBD, sUsuario, sPass); c.OpenConnection(); }