Ver Mensaje Individual
  #4 (permalink)  
Antiguo 21/06/2010, 19:53
Avatar de jaullo
jaullo
 
Fecha de Ingreso: abril-2009
Mensajes: 994
Antigüedad: 16 años
Puntos: 30
Respuesta: Access y VB.net, recuperar datos de la base de datos

Lo puedes hacer con un datareader, por ejemplo

Código ASP:
Ver original
  1. Dim myConnection As SqlConnection
  2. Dim myCommand As SqlCommand
  3. Dim dr As New SqlDataReader()
  4. 'declaring the objects
  5.  
  6. sub data()
  7. myConnection = New SqlConnection("server=localhost;uid=sa;pwd=;database=pubs")
  8. 'establishing connection. you need to provide password for sql server
  9. Try
  10. myConnection.Open()
  11. 'opening the connection
  12. myCommand = New SqlCommand("Select * from discounts where usuario='" & usuario & "'", myConnection)
  13. 'executing the command and assigning it to connection
  14. dr = myCommand.ExecuteReader()
  15. While dr.Read()
  16. lbloro.text=dr(0).tostring()
  17. End While
  18. dr.Close()
  19. myConnection.Close()
  20. Catch e As Exception
  21. End Try
  22. End Sub

Prueba esto, nada mas cambia los datos de la base de datos y la instruccion select