俺是菜鸟...大家帮忙看下这里,哪里出错了..总是报"="附件有语法错误.
Public Function Delete(ByVal Table As String, ByVal Row As String, ByVal Value As String) As IntegerOpen()
Dim strSQL As String = "Delete From" + Table + "Where" + Row + "=" + Value
Dim cmd As SqlCommand = New SqlCommand(strSQL, conn)
Dim count As Integer = 0
count = cmd.ExecuteNonQuery()
Close()
Return count
End Function