fix connectionstring not being respected, missing datasource for automatic indexes
This commit is contained in:
parent
1781a08022
commit
a13a3b3c67
@ -86,17 +86,20 @@ Public Class ClassControls
|
|||||||
AddHandler oControl.SelectedValuesChanged, AddressOf Lookup_SelectedValuesChanged
|
AddHandler oControl.SelectedValuesChanged, AddressOf Lookup_SelectedValuesChanged
|
||||||
|
|
||||||
oConnectionString = ClassFormFunctions.GetConnectionString(conid)
|
oConnectionString = ClassFormFunctions.GetConnectionString(conid)
|
||||||
|
|
||||||
If oConnectionString IsNot Nothing Then
|
If oConnectionString IsNot Nothing Then
|
||||||
|
LOGGER.Debug("Connection String (redacted): [{0}]", oConnectionString.Substring(0, 30))
|
||||||
|
|
||||||
If ClassPatterns.HasComplexPatterns(oSql) Then
|
If ClassPatterns.HasComplexPatterns(oSql) Then
|
||||||
LOGGER.Debug(" >>sql enthält Platzhalter und wird erst während der Laufzeit gefüllt!", False)
|
LOGGER.Debug(" >>sql enthält Platzhalter und wird erst während der Laufzeit gefüllt!", False)
|
||||||
Else
|
Else
|
||||||
Dim oDatatable = ClassDatabase.Return_Datatable_Combined(oSql, oConnectionString, False)
|
Dim oDatatable = ClassDatabase.Return_Datatable_Combined(oSql, oConnectionString, False)
|
||||||
oControl.DataSource = oDatatable
|
oControl.DataSource = oDatatable
|
||||||
End If
|
End If
|
||||||
|
Else
|
||||||
|
LOGGER.Warn("Connection String for control [{0}] is empty!", oControl.Name)
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Return oControl
|
Return oControl
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
LOGGER.Info(" - Unvorhergesehener Unexpected error in AddVorschlag_ComboBox - Indexname: " & indexname & " - Fehler: " & vbNewLine & ex.Message)
|
LOGGER.Info(" - Unvorhergesehener Unexpected error in AddVorschlag_ComboBox - Indexname: " & indexname & " - Fehler: " & vbNewLine & ex.Message)
|
||||||
|
|||||||
@ -65,7 +65,7 @@ Public Class ClassDatabase
|
|||||||
|
|
||||||
Public Shared Function Return_Datatable_Combined(SqlCommand As String, ConnectionString As String, Optional userInput As Boolean = False)
|
Public Shared Function Return_Datatable_Combined(SqlCommand As String, ConnectionString As String, Optional userInput As Boolean = False)
|
||||||
If ConnectionString.Contains("Initial Catalog=") Then
|
If ConnectionString.Contains("Initial Catalog=") Then
|
||||||
Return Return_Datatable(SqlCommand, userInput)
|
Return Return_Datatable_CS(SqlCommand, ConnectionString, userInput)
|
||||||
Else
|
Else
|
||||||
Return Oracle_Return_Datatable(SqlCommand, ConnectionString, userInput)
|
Return Oracle_Return_Datatable(SqlCommand, ConnectionString, userInput)
|
||||||
End If
|
End If
|
||||||
|
|||||||
2
Global_Indexer/frmAdministration.Designer.vb
generated
2
Global_Indexer/frmAdministration.Designer.vb
generated
@ -1766,6 +1766,8 @@ Partial Class frmAdministration
|
|||||||
'
|
'
|
||||||
Me.ListBoxControl4.AppearanceSelected.BackColor = System.Drawing.Color.Khaki
|
Me.ListBoxControl4.AppearanceSelected.BackColor = System.Drawing.Color.Khaki
|
||||||
Me.ListBoxControl4.AppearanceSelected.Options.UseBackColor = True
|
Me.ListBoxControl4.AppearanceSelected.Options.UseBackColor = True
|
||||||
|
Me.ListBoxControl4.DataSource = Me.TBDD_INDEX_AUTOMBindingSource
|
||||||
|
Me.ListBoxControl4.DisplayMember = "INDEXNAME"
|
||||||
resources.ApplyResources(Me.ListBoxControl4, "ListBoxControl4")
|
resources.ApplyResources(Me.ListBoxControl4, "ListBoxControl4")
|
||||||
Me.ListBoxControl4.Name = "ListBoxControl4"
|
Me.ListBoxControl4.Name = "ListBoxControl4"
|
||||||
'
|
'
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user