测试数据库是否连接正确的实例

  1. Imports System.Data
  2. Imports System.Data.SqlClient   REM 有数据库连接的时候就要写这两行
  3. Public Class Form1
  4.     Private Sub Button1_Click(ByVal sender As System.ObjectByVal e As System.EventArgs) Handles Button1.Click
  5.         Dim mycon As New SqlConnection("Data Source=lty-pc;Initial Catalog=Discuz!;Integrated Security=True")
  6.         Try
  7.             mycon.Open()
  8.             MsgBox("连接成功")
  9.         Catch ex As Exception
  10.             MsgBox(ex.Message)   '显示连接数据库出错的详细信息
  11.         End Try
  12.         mycon.Close()    'try和 end try是什么意思我现在还不懂
  13.     End Sub
  14. End Class

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