private void button3_Click(object sender, EventArgs e) { Evento evento; EventoDAO eventoDAO = new EventoDAO(); evento = eventoDAO.Buscar(textBox1.Text); try { using (OracleCommand Comando = new OracleCommand()) { Comando.Connection = ConexaoBD.Conectar(); Comando.CommandType = System.Data.CommandType.Text; Comando.CommandText = "SELECT ID_EVENTO, NOME, DATA_INICIO, DATA_FIM, LOCAL, ID_RESPONSAVEL FROM EVENTO WHERE ID_EVENTO = :idevento"; Comando.Parameters.Add(":idevento", OracleType.Number).Value = OracleNumber.Parse(textBox1.Text); OracleDataReader leitor = Comando.ExecuteReader(); while (leitor.HasRows) { leitor.Read(); leitor.NextResult(); } } } catch (OracleException ex) { MessageBox.Show(ex.Message); } }
private void pictureBox1_Click(object sender, EventArgs e) { try { Evento Evento; EventoDAO EventoDAO = new EventoDAO(); Evento = EventoDAO.Buscar(textBox6.Text); textBox1.Text = Evento.Nome; textBox2.Text = Evento.Data_inicio; textBox3.Text = Evento.Data_fim; textBox4.Text = Evento.Local; textBox5.Text = Evento.Id_responsavel.ToString(); } catch (Exception E) { MessageBox.Show("Esse ID não está cadastrado, verifique!"); } }