08-26-2009, 09:29 PM
Error I get:
Type mismatch: 'Output'
Line (25): "Output Query.GetString".
My code:
I'm trying to output the value via msgbox that is received from the sql statement above. The rev_id returned is of type Int. Thanks! Would appreciate the help...
Type mismatch: 'Output'
Line (25): "Output Query.GetString".
My code:
Code:
valueHID = Datatable.Value("HID_out")
sql = "SELECT rev_id FROM bh INNER JOIN clue ON bh.clue_id = clue.clue_id WHERE h_id = " & valueHID
set Query = dbexample.execute(sql)
Output Query.GetString
msgbox Output
I'm trying to output the value via msgbox that is received from the sql statement above. The rev_id returned is of type Int. Thanks! Would appreciate the help...