SQLEditor: Init

This commit is contained in:
Jonathan Jenne
2020-06-15 15:45:27 +02:00
parent e403d81296
commit 71f307d50a
18 changed files with 1162 additions and 5 deletions

15
SQLEditorTest/Form1.vb Normal file
View File

@@ -0,0 +1,15 @@
Imports DigitalData.Controls.SQLEditor
Imports DigitalData.Modules.Logging
Imports DigitalData.Modules.Database
Public Class Form1
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Dim oLogCOnfig As New LogConfig(LogConfig.PathType.Temp, Nothing, Nothing, Nothing, Nothing)
Dim oConnString = MSSQLServer.GetConnectionString("SDD-VMP04-SQL17\DD_DEVELOP01", "DD_ECM_TEST", "sa", "dd")
Dim oDatabase As New MSSQLServer(oLogCOnfig, oConnString)
Dim oConnections As DataTable = oDatabase.GetDatatable("SELECT * FROM TBDD_CONNECTION")
Dim oEditor As New frmSQLEditor(oLogCOnfig, oConnections)
oEditor.Show()
End Sub
End Class