11/04/2011, 08:20
|
| | | Fecha de Ingreso: junio-2007 Ubicación: Shikasta
Mensajes: 1.272
Antigüedad: 17 años, 5 meses Puntos: 49 | |
Respuesta: Insertar en SQL un DataGridView entero? Que tal Frehley lo puedes hacer de esta forma:
Código vb:
Ver originalFor Each Row As DataGridViewRow In TUDATAGRIDVIEW.Rows If Row.Cells(1).Value <> String.Empty Then If Row.Cells(7).Value.ToString.Contains("A") Then consulta = "INSERT INTO TUTABLA (columna1,columna2,columna3,columna4) VALUES ('" + Row.Cells(1).Value + "','" + Row.Cells(2).Value + "','" + Row.Cells(3).Value + "','" + Row.Cells(4).Value + "') " 'Ejecutas tu consulta End If End If Next Row
Creo que la conexión a tu BD la sabes hacer, y de igual forma ejecutar consultas.
Saludos.
__________________ "SELECT * FROM Mujeres WHERE situacion NOT IN ('CASADAS','CON HIJOS','ATORMENTADAS','CUASI-ENNOVIADAS') AND personalidad <> 'INTENSA'" |