Visual Basic .NET Language
연결 처리
수색…
공용 연결 속성
Imports System.Data.OleDb
Private WithEvents _connection As OleDbConnection
Private _connectionString As String = "myConnectionString"
Public ReadOnly Property Connection As OleDbConnection
Get
If _connection Is Nothing Then
_connection = New OleDbConnection(_connectionString)
_connection.Open()
Else
If _connection.State <> ConnectionState.Open Then
_connection.Open()
End If
End If
Return _connection
End Get
End Property
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow