Files
EDOKA_Batch/Archiv/EDKB01ZV/Backup/db_connection.vb
2021-04-20 07:59:36 +02:00

19 lines
485 B
VB.net

Imports System.ComponentModel
Imports Microsoft.VisualBasic
Namespace EDOKA
Public Class DB_Connection
Shared Sub New()
oread = IO.File.OpenText(Globals.ApplicationPath + "edokaconn.cfg")
sConnectionString_edoka = oread.ReadLine
Globals.sConnectionString_edoka = sConnectionString_edoka
oread.Close()
Globals.conn_edoka.sConnectionString = sConnectionString_edoka
End Sub
End Class
End Namespace