Nachrichten verbessert, Bugs beseitigt, ...

This commit is contained in:
ms
2019-11-07 09:47:16 +01:00
parent 2197c92cba
commit 0b0d0f9538
10 changed files with 137 additions and 80 deletions

View File

@@ -50,6 +50,18 @@ Public Class cSQL
con.Close()
End Sub
Public Shared Sub SQLCommand(command As String)
Dim con As New SqlConnection
Dim cmd As New SqlCommand
con.ConnectionString = Class1.DBConString
cmd.Connection = con
con.Open()
cmd.CommandText = command
cmd.ExecuteNonQuery()
con.Close()
End Sub
End Class