Database: Move Database Adapters to Subfolder, Add TableCache

This commit is contained in:
Jonathan Jenne
2021-05-19 13:18:34 +02:00
parent 04db51f845
commit 31777586fe
6 changed files with 22 additions and 4 deletions

View File

@@ -0,0 +1,17 @@
Public Class TableCache
Private Items As New Dictionary(Of String, DataTable)
Public Function [Get](SQLCommand As String)
Dim oKey As String = SQLCommand.ToUpper
If Items.ContainsKey(oKey) Then
Return Items.Item(oKey)
Else
End If
End Function
Private Function SaveTable()
End Function
End Class