I got a query using SQL inside ASP Classic, and the syntax that I got is shown below:
    mQry = "SELECT name FROM finals WHERE invoice_num = " &request.querystring("num") & " AND name LIKE '&" & request.querystring("nam") & "%'"
    response.write("Operating Unit")
    for each x in TestRally.fields
    response.write(": ")
    response.write(x.value)  '-- got error in this area...
    response.write("<br>")
    next
    response.write("<br>")
    TestRally.MoveNext
Based on the above mentioned syntax, what would be the best possible remedy for this..???
The error message I got so far is this:
Microsoft OLE DB Provider for Oracle error '80040e07' ORA-01722: invalid number
 
     
     
     
     
     
    
") next Response.Write("
") TestRally.MoveNext TestRally.close oraConn.close Response.Write("
") – Rally Cautiverio Aug 30 '13 at 01:21