MS Parameter renaming
This commit is contained in:
parent
c7afa2f754
commit
2991b52c17
@ -159,6 +159,13 @@ Public Class MSSQLServer
|
|||||||
Return oGDPicture
|
Return oGDPicture
|
||||||
End Using
|
End Using
|
||||||
End Function
|
End Function
|
||||||
|
Public Function GetDDCatalog() As DataTable
|
||||||
|
Using oConnection As SqlConnection = GetSQLConnection()
|
||||||
|
Dim oSQL = Queries.DD_ECM.DD_SELECTS.TBDD_CATALOG
|
||||||
|
Dim oDT_CATALOG As DataTable = GetDatatable(oSQL)
|
||||||
|
Return oDT_CATALOG
|
||||||
|
End Using
|
||||||
|
End Function
|
||||||
Public Function Get_ConnectionStringforID(pConnectionId As Integer) As String
|
Public Function Get_ConnectionStringforID(pConnectionId As Integer) As String
|
||||||
Dim oConnectionString As String = String.Empty
|
Dim oConnectionString As String = String.Empty
|
||||||
|
|
||||||
|
|||||||
@ -4,6 +4,9 @@
|
|||||||
Public Const GdPictureLicense As String = "SELECT COALESCE(MAX(LICENSE),'') FROM TBDD_3RD_PARTY_MODULES WHERE ACTIVE = 1 AND NAME = 'GDPICTURE' AND [VERSION] = '11.2024'"
|
Public Const GdPictureLicense As String = "SELECT COALESCE(MAX(LICENSE),'') FROM TBDD_3RD_PARTY_MODULES WHERE ACTIVE = 1 AND NAME = 'GDPICTURE' AND [VERSION] = '11.2024'"
|
||||||
Public Const GdPictureLicense_REGULAR As String = "SELECT COALESCE(MAX(LICENSE),'') FROM TBDD_3RD_PARTY_MODULES WHERE NAME = 'GDPICTURE' AND ACTIVE = 1"
|
Public Const GdPictureLicense_REGULAR As String = "SELECT COALESCE(MAX(LICENSE),'') FROM TBDD_3RD_PARTY_MODULES WHERE NAME = 'GDPICTURE' AND ACTIVE = 1"
|
||||||
End Class
|
End Class
|
||||||
|
Public Class DD_SELECTS
|
||||||
|
Public Const TBDD_CATALOG As String = "SELECT * FROM TBDD_CATALOG"
|
||||||
|
End Class
|
||||||
|
|
||||||
Public Class Connections
|
Public Class Connections
|
||||||
Public Const AllConnections As String = "SELECT * FROM TBDD_CONNECTION AND AKTIV = 1"
|
Public Const AllConnections As String = "SELECT * FROM TBDD_CONNECTION AND AKTIV = 1"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user