remove obsolete mysqlserver methods

This commit is contained in:
Jonathan Jenne
2020-06-23 11:13:37 +02:00
parent c4e5557d4d
commit e2b9e9fe49
7 changed files with 22 additions and 40 deletions

View File

@@ -66,7 +66,7 @@ Public Class ChatNewConv
If _Database.ExecuteNonQuery(oSQL) = True Then
Dim oError As Boolean = False
oSQL = $"SELECT MAX(CONVERSATION_ID) FROM VWIDB_CONVERSATION WHERE IDB_OBJ_ID = {IDBObjectId}"
Dim oCONV_ID = _Database.NewExecuteScalar(oSQL)
Dim oCONV_ID = _Database.GetScalarValue(oSQL)
If Not IsNothing(oCONV_ID) Then
NewConversation = oCONV_ID
Dim oSelectedUsers As Integer() = GridViewUsers.GetSelectedRows()