誰かアドバイスしてもらえますか?作成した.netライブラリでエラーが発生した場合は、詳細なエラーメッセージをテキストファイルまたはSQLサーバーに記録します。
Try
'Here we are using the sql command object to fetch the required data
Catch ex As Exception
'Here we want to capture detailed error information in a text file or
'sql server
Finally
If Not _SQLCommand Is Nothing Then
_SQLCommand.Dispose()
End If
If Not _Conn Is Nothing Then
_EConn.Close()
End If
End Try