Ejemplo n.º 1
0
        public void CarregarGrid()
        {
            ConMySql conexao = new ConMySql();

            conexao.ligar();
            DataTable dtIncidente = new DataTable();

            try
            {
                string comando = @"select * from incidente order by data_abertura";

                MySqlDataAdapter Adapter = new MySqlDataAdapter(comando, conexao.con());
                Adapter.Fill(dtIncidente);
                dgvIncidente.DataSource = dtIncidente;


                for (int count = 0; count < dtIncidente.Rows.Count; count++)
                {
                    dgvIncidente.Rows[count].Cells[0].Value = dtIncidente.Rows[count]["titulo"];
                    dgvIncidente.Rows[count].Cells[1].Value = dtIncidente.Rows[count]["cliente"].ToString();
                    dgvIncidente.Rows[count].Cells[2].Value = dtIncidente.Rows[count]["Solicitante"].ToString();
                    dgvIncidente.Rows[count].Cells[3].Value = dtIncidente.Rows[count]["tipo"].ToString();
                    dgvIncidente.Rows[count].Cells[4].Value = dtIncidente.Rows[count]["usuario_atendente"].ToString();
                }

                dgvIncidente.ClearSelection();
            }

            catch (Exception EX)
            {
                MessageBox.Show("ERRO AO BUSCAR CLIENTES" + "\n" + EX.Message);
            }
        }
Ejemplo n.º 2
0
        private void BtnPesquisar_Click(object sender, EventArgs e)
        {
            ConMySql conexao = new ConMySql();

            conexao.ligar();
            DataTable dtCliente = new DataTable();

            try
            {
                string comando = $@"SELECT * FROM  cliente where nome like '%{txtPesquisar.Text}%'";
                //WHERE(SP.PES_NUMERO = {txtPesquisar.Text}) ";
                MySqlDataAdapter Adapter = new MySqlDataAdapter(comando, conexao.con());
                Adapter.Fill(dtCliente);
                dgvCliente.DataSource = dtCliente;

                for (int count = 0; count < dtCliente.Rows.Count; count++)
                {
                    dgvCliente.Rows[count].Cells[0].Value = dtCliente.Rows[count]["IMAGEM"];
                    dgvCliente.Rows[count].Cells[1].Value = dtCliente.Rows[count]["NOME"].ToString();
                    dgvCliente.Rows[count].Cells[2].Value = dtCliente.Rows[count]["TELEFONE"].ToString();
                    dgvCliente.Rows[count].Cells[3].Value = dtCliente.Rows[count]["ENDERECO"].ToString();
                    dgvCliente.Rows[count].Cells[4].Value = dtCliente.Rows[count]["EMAIL"].ToString();
                }
            }

            catch (Exception EX)
            {
                MessageBox.Show("ERRO AO BUSCAR CLIENTES" + "\n" + EX.Message);
            }
        }
Ejemplo n.º 3
0
        private DataTable ListarPessoa(string pessoa)
        {
            ConMySql conexao = new ConMySql();

            conexao.ligar();
            DataTable dtPessoa = new DataTable();

            try
            {
                string           comando = $"SELECT * FROM  {pessoa} order by nome";
                MySqlDataAdapter Adapter = new MySqlDataAdapter(comando, conexao.con());
                Adapter.Fill(dtPessoa);
            }

            catch (Exception EX)
            {
                MessageBox.Show("ERRO:" + "\n" + EX.Message);
            }
            return(dtPessoa);
        }