读出数据库中数据

  1. Imports System.Data
  2. Imports System.Data.SqlClient   REM 有数据库连接的时候就要写这两行
  3. Public Class Form1
  4.     Private Sub Button2_Click(ByVal sender As System.ObjectByVal e As System.EventArgs) Handles Button2.Click
  5.         Using mycon As New SqlConnection("Data Source=lty-pc;Initial Catalog=Discuz!;Integrated Security=True")
  6.             Dim sql As SqlCommand = New SqlCommand("select * from dnt_forums", mycon)
  7.             mycon.Open()
  8.             Dim Rs As SqlDataReader = sql.ExecuteReader
  9.             If Rs.HasRows = True Then
  10.                 While Rs.Read
  11.                     Application.DoEvents()
  12.                     Label1.Text += Rs("fid").ToString() & vbCrLf
  13.                 End While
  14.             End If
  15.             Rs.Close()
  16.             sql.Dispose()
  17.             mycon.Close()
  18.         End Using
  19.     End Sub
  20. End Class

你可能感兴趣的:(数据库)