You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
485 B
19 lines
485 B
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
|