Removed DOSBox update from DB upgrade

This commit is contained in:
Michael J. Seiferling
2015-12-04 10:40:28 -06:00
parent 7abdf9da7b
commit a27802fea7
-36
View File
@@ -326,38 +326,6 @@ Public Class mgrSQLite
End Sub End Sub
Public Sub UpgradeDOSBox()
Dim sSQL As String
Dim sCurrentID As String
Dim sCurrentName As String
Dim sCurrentProcess As String
Dim sDosProcess As String
Dim sNewName As String
Dim oData As DataSet
Dim hshParams As Hashtable
Dim oParamList As New List(Of Hashtable)
sSQL = "SELECT MonitorID, Name, Process FROM monitorlist WHERE Process LIKE '%dosbox:%'"
oData = ReadParamData(sSQL, New Hashtable)
sSQL = "UPDATE monitorlist SET Name=@NewName, Process=@NewProcess WHERE MonitorID=@ID;"
For Each dr As DataRow In oData.Tables(0).Rows
hshParams = New Hashtable
sCurrentID = CStr(dr("MonitorID"))
sCurrentName = CStr(dr("Name"))
sCurrentProcess = CStr(dr("Process"))
sDosProcess = sCurrentProcess.Split(":")(1)
sNewName = sCurrentName & " (" & sDosProcess & ")"
hshParams.Add("NewName", sNewName)
hshParams.Add("NewProcess", "DOSBox")
hshParams.Add("ID", sCurrentID)
oParamList.Add(hshParams)
Next
RunMassParamQuery(sSQL, oParamList)
End Sub
Public Sub DatabaseUpgrade() Public Sub DatabaseUpgrade()
Dim sSQL As String Dim sSQL As String
@@ -518,8 +486,6 @@ Public Class mgrSQLite
'Backup DB before starting 'Backup DB before starting
BackupDB("v94") BackupDB("v94")
UpgradeDOSBox()
sSQL = "PRAGMA user_version=95" sSQL = "PRAGMA user_version=95"
RunParamQuery(sSQL, New Hashtable) RunParamQuery(sSQL, New Hashtable)
@@ -528,8 +494,6 @@ Public Class mgrSQLite
'Backup DB before starting 'Backup DB before starting
BackupDB("v94") BackupDB("v94")
UpgradeDOSBox()
sSQL = "PRAGMA user_version=95" sSQL = "PRAGMA user_version=95"
RunParamQuery(sSQL, New Hashtable) RunParamQuery(sSQL, New Hashtable)