Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. > Dim cn4 As New SqlConnection
  2. > cn4.ConnectionString = conexion
  3. > Dim cmd4 As New SqlCommand()
  4. > cmd4.CommandText = "SELECT * adquisiciontemp"
  5. > cmd4.Connection = cn4
  6. > cn4.Open()
  7.  
  8. > Dim cn3 As New SqlConnection
  9. > cn3.ConnectionString = conexion
  10. > Dim cmd3 As New SqlCommand()
  11. > cmd3.CommandText = ("INSERT INTO adquisicion")
  12. > cmd3.Connection = cn3
  13. > cn3.Open()
  14. > cmd3.ExecuteNonQuery()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement