W
WIN
My code
Dim sqlcommand As SqlClient.SqlCommand = New SqlClient.SqlCommand
sqlcommand.CommandText = "insert into Supplier( ADDR1 ) values ( @ADDR1 )"
sqlcommand.Parameters.Add("@ADDR1", supplierobj.getADDR1)
how can i see the sql statement execute in runtime for testing ?
Dim sqlcommand As SqlClient.SqlCommand = New SqlClient.SqlCommand
sqlcommand.CommandText = "insert into Supplier( ADDR1 ) values ( @ADDR1 )"
sqlcommand.Parameters.Add("@ADDR1", supplierobj.getADDR1)
how can i see the sql statement execute in runtime for testing ?