Is there a way to insert a dynamically generated datatable into mysql database in asp.net?
+2
A:
Sub OutputQty(ByVal dt As DataTable, ByVal AdID As Integer)
Dim sql As String = ""
Dim con As New SqlConnection(Utilities.DELcon)
Dim cmd As New SqlCommand(sql, con)
con.Open()
For Each row In dt.Rows
sql = "Insert INTO DMQtyOutput (AdID, CompanyID, StoreNumber, DemandQty) values ('" & row("AdID") & "','" & row("CompanyID") & "','" & row("StoreNumber") & "','" & row("DemandQty") & "')"
cmd.CommandText = sql
cmd.ExecuteNonQuery()
Next
con.Close()
End Sub
Ozmodius
2009-09-23 15:09:38