jj: Database Version 0.0.0.2
This commit is contained in:
parent
b92100e401
commit
46c65eb464
@ -131,5 +131,11 @@
|
|||||||
</None>
|
</None>
|
||||||
<None Include="packages.config" />
|
<None Include="packages.config" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\Modules.Logging\Logging.vbproj">
|
||||||
|
<Project>{903b2d7d-3b80-4be9-8713-7447b704e1b0}</Project>
|
||||||
|
<Name>Logging</Name>
|
||||||
|
</ProjectReference>
|
||||||
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
|
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
|
||||||
</Project>
|
</Project>
|
||||||
@ -1,11 +1,11 @@
|
|||||||
Imports NLog
|
Imports FirebirdSql.Data.FirebirdClient
|
||||||
Imports FirebirdSql.Data.FirebirdClient
|
|
||||||
Imports System.Text.RegularExpressions
|
Imports System.Text.RegularExpressions
|
||||||
|
Imports DigitalData.Modules.Logging
|
||||||
|
|
||||||
''' <summary>
|
''' <summary>
|
||||||
''' MODULE: Firebird
|
''' MODULE: Firebird
|
||||||
'''
|
'''
|
||||||
''' VERSION: 0.0.0.1
|
''' VERSION: 0.0.0.2
|
||||||
'''
|
'''
|
||||||
''' DATE: 03.09.2018
|
''' DATE: 03.09.2018
|
||||||
'''
|
'''
|
||||||
@ -47,7 +47,7 @@ Imports System.Text.RegularExpressions
|
|||||||
''' </summary>
|
''' </summary>
|
||||||
Public Class Firebird
|
Public Class Firebird
|
||||||
Private _logger As Logger
|
Private _logger As Logger
|
||||||
Private _logFactory As LogFactory
|
Private _logConfig As LogConfig
|
||||||
Private _connectionServer As String
|
Private _connectionServer As String
|
||||||
Private _connectionDatabase As String
|
Private _connectionDatabase As String
|
||||||
Private _connectionUsername As String
|
Private _connectionUsername As String
|
||||||
@ -74,9 +74,9 @@ Public Class Firebird
|
|||||||
''' <param name="User"></param>
|
''' <param name="User"></param>
|
||||||
''' <param name="Password"></param>
|
''' <param name="Password"></param>
|
||||||
''' <exception cref="Exceptions.DatabaseException"></exception>
|
''' <exception cref="Exceptions.DatabaseException"></exception>
|
||||||
Public Sub New(LogFactory As LogFactory, Datasource As String, Database As String, User As String, Password As String)
|
Public Sub New(LogConfig As LogConfig, Datasource As String, Database As String, User As String, Password As String)
|
||||||
_logger = LogFactory.GetCurrentClassLogger()
|
_logger = LogConfig.GetLogger()
|
||||||
_logFactory = LogFactory
|
_logConfig = LogConfig
|
||||||
|
|
||||||
Dim oConnectionString = GetConnectionString(Datasource, Database, User, Password)
|
Dim oConnectionString = GetConnectionString(Datasource, Database, User, Password)
|
||||||
|
|
||||||
|
|||||||
@ -10,7 +10,7 @@ Imports System.Runtime.InteropServices
|
|||||||
|
|
||||||
<Assembly: AssemblyTitle("Modules.Database")>
|
<Assembly: AssemblyTitle("Modules.Database")>
|
||||||
<Assembly: AssemblyDescription("")>
|
<Assembly: AssemblyDescription("")>
|
||||||
<Assembly: AssemblyCompany("")>
|
<Assembly: AssemblyCompany("Digital Data")>
|
||||||
<Assembly: AssemblyProduct("Modules.Database")>
|
<Assembly: AssemblyProduct("Modules.Database")>
|
||||||
<Assembly: AssemblyCopyright("Copyright © 2018")>
|
<Assembly: AssemblyCopyright("Copyright © 2018")>
|
||||||
<Assembly: AssemblyTrademark("")>
|
<Assembly: AssemblyTrademark("")>
|
||||||
@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
|
|||||||
' übernehmen, indem Sie "*" eingeben:
|
' übernehmen, indem Sie "*" eingeben:
|
||||||
' <Assembly: AssemblyVersion("1.0.*")>
|
' <Assembly: AssemblyVersion("1.0.*")>
|
||||||
|
|
||||||
<Assembly: AssemblyVersion("1.0.0.0")>
|
<Assembly: AssemblyVersion("0.0.0.2")>
|
||||||
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user