Hello
I need to check the output of a prepared query:
HashOutput = ReadFile(path)
'WARNING: Can hash contain a single quote?
SQLcommand.CommandText = "SELECT id,name,hash FROM files WHERE hash='@hash'"
SQLcommand.Parameters.AddWithValue("@hash", HashOutput)
SQLcommand.Prepare()
SQLreader = SQLcommand.ExecuteReader()
'If first occurence of this file, save hash for later
If Not SQLreader.HasRows Then
Is there a way to tell SDS to display how it massaged the query before or after running it?
Thank you.