Code:
Dim MyCommand As New OleDbCommand(("exec Write_Logins " & Date.Now.Date & "," & Date.Now.ToLongTimeString & "," & UsernameTry & "," & PasswordTry & ", " & TheirIP & "," & Payload & ""), MyConnection)
I get this error:
Failed to log attempt to db:Could not find stored procedure Write_Logins., Database Closed
I know Write_Login is there.. becuase i can run this query from Query Analyzer:
exec Write_Logins 1,1,1,1,1,1
and that works..
the Myconnection string worked when I didnt use stored procedures.
any ideas?