jj: show results over search start

This commit is contained in:
Jonathan Jenne
2020-11-24 15:48:15 +01:00
parent 4b2286f97e
commit 48fb53127e
4 changed files with 53 additions and 45 deletions

View File

@@ -213,6 +213,12 @@ Public Class MSSQLServer
Return ExecuteNonQuery(SQLCommand, _Timeout)
End Function
Public Async Function ExecuteNonQueryAsync(SQLCommand As String) As Task(Of Boolean)
Return Await Task.Run(Function()
Return ExecuteNonQuery(SQLCommand, _Timeout)
End Function)
End Function
Public Function GetScalarValue(SQLCommand As String, Timeout As Integer) As Object Implements IDatabase.GetScalarValue
Try
If TestCanConnect() = False Then