VB.NET Пример app.config Access - PullRequest
       9

VB.NET Пример app.config Access

2 голосов
/ 07 декабря 2009

Может ли кто-нибудь предоставить пример кода, показывающий, как интегрировать файл app.config с приложением, написанным на VB.NET. В частности, мне нужно извлечь строки подключения к базе данных из файла app.config.

1 Ответ

1 голос
/ 07 декабря 2009

См:

Public Shared Function GetConnectionString(ByVal strConnection As String) As String
   'Declare a string to hold the connection string
   Dim sReturn As New String("")
   'Check to see if they provided a connection string name
   If Not String.IsNullOrEmpty(strConnection) Then
      'Retrieve the connection string fromt he app.config
      sReturn = ConfigurationManager. & _
      ConnectionStrings(strConnection).ConnectionString
   Else
      'Since they didnt provide the name of the connection string
       'just grab the default on from app.config
      sReturn = ConfigurationManager. & _
      ConnectionStrings("YourConnectionString").ConnectionString
   End If
   'Return the connection string to the calling method
   Return sReturn
End Function
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...