public void PreencherGridMySQL() { string connectionString = @"Server=MYSQL5018.site4now.net;Database=db_a427ba_ericroc;Uid=a427ba_ericroc;Pwd=poi098zxc123"; MySqlConnection cnx = new MySqlConnection(connectionString); //instancia conexão. connDataSet = new DataSet(); // sql consulta string sql = "select * from estado"; // abre a conexao cnx.Open(); // cria o comando MySqlCommand cmd = new MySqlCommand(sql, cnx); // cria a tabela de dados DataTable data = new DataTable(); //carrega a tabela com os dados data.Load(cmd.ExecuteReader()); //fecha conexao cnx.Close(); //cnx.Dispose(); // carega a grid com a tabela GridEstado.DataSource = data; GridEstado.DataBind(); }
protected void ButtonPesquisar(object sender, EventArgs e) { string connectionString = @"Server=MYSQL5018.site4now.net;Database=db_a427ba_ericroc;Uid=a427ba_ericroc;Pwd=poi098zxc123"; MySqlConnection cnx = new MySqlConnection(connectionString); //instancia conexão. // sql consulta string sql = "SELECT * FROM `estado` WHERE `nome` LIKE @nome or `codigo` LIKE @nome or `UF` LIKE @nome"; // abre a conexao cnx.Open(); // cria o comando MySqlCommand cmd = new MySqlCommand(sql, cnx); cmd.Parameters.AddWithValue("@nome", "%" + TextBoxPesquisa.Text + "%"); // cria a tabela de dados DataTable data = new DataTable(); //carrega a tabela com os dados data.Load(cmd.ExecuteReader()); //fecha conexao cnx.Close(); // carega a grid com a tabela GridEstado.DataSource = data; GridEstado.DataBind(); }
private void PreencherGrid() { GridEstado.DataSource = ConsultarDados(); GridEstado.DataBind(); }