Ver Mensaje Individual
  #3 (permalink)  
Antiguo 12/10/2010, 08:52
Ka0stj
 
Fecha de Ingreso: febrero-2010
Ubicación: México
Mensajes: 738
Antigüedad: 14 años, 9 meses
Puntos: 37
Respuesta: Conectarse a sql y llenar GridView en C#?

Puedes usar lo siguiente también:

Código PHP:
Ver original
  1. public void CargarDataGridView(System.Windows.Forms.DataGridView ElDataGridView, String Sql, SqlConnection objConn)
  2.         {
  3.  
  4.             SqlCommand ElComando = new SqlCommand();
  5.             SqlDataReader ElReader;
  6.             System.Data.DataTable ElDataTable = new System.Data.DataTable();
  7.  
  8.             try
  9.             {
  10.                 ElComando = new SqlCommand(Sql, objConn);
  11.                 ElReader = ElComando.ExecuteReader();
  12.                 ElDataTable.Load(ElReader);
  13.                 ElDataGridView.DataSource = ElDataTable;
  14.  
  15.             }
  16.             catch (Exception e)
  17.             {
  18.                 throw (e);
  19.             }        
  20.            
  21.         }

Saludos!