Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
parameterized SQL query in QTP
#1
Solved: 11 Years, 4 Months, 1 Week ago
I ve got a problem

as soon as i create a record in my GUI an 2 unique ids are generated for a record and it is displayed at the bottom of my screen

I retreived the values using text output values

Now i need to validate whether the record is present in the database

I stored the 2 ids in the variables x & y respectively

in the Database output value I mentioned the sqlquery as

select * from table where id1='x' and id2='y'
I used the select SQL statement manually after setting up the connection string
The database ouput value Wizard throws an error.

Kindly help me out in this

how do i use output values as input to SQL
Reply
#2
Solved: 11 Years, 4 Months, 1 Week ago
Try this

select * from table where id1='"&x&"' and id2='"&y&"'
Reply
#3
Solved: 11 Years, 4 Months, 1 Week ago
Hi Jack

I did try this

I get an error stating that SQL query cannot be excecuted

details :[Microsoft][ODBC driver for Oracle][Oracle]ORA-01722: invalid number
Reply
#4
Solved: 11 Years, 4 Months, 1 Week ago
Hey guys

can someone help me out on this
Reply
#5
Solved: 11 Years, 4 Months, 1 Week ago
I guess the field Id1 and Id2 is expecting a numeric value
have you tried removing the single quote (')?
Code:
select * from table where id1="& x & " and id2=" & y

Reply
#6
Solved: 11 Years, 4 Months, 1 Week ago
I HAVE DONE IT BUDDY. I will try once again and get back to u
Reply
#7
Solved: 11 Years, 4 Months, 1 Week ago
it says "invalid identifier" now for this query

select * from table where id1="& x & " and id2=" & y"

tried all possible combinations . no sloution yet
Reply
#8
Solved: 11 Years, 4 Months, 1 Week ago
Hi,
Check, the id1 and id2 column's data type. According to it, you reframe your query and then try.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Exe invoked through UFT is unable to access IIS and SQL Server service bkdevise 0 2,165 08-25-2015, 05:49 PM
Last Post: bkdevise
  Query regarding "Call" statement anupam4j 1 2,051 09-26-2014, 01:46 PM
Last Post: vinod123
  parameterize Excel Sheet Name in SQL bjitsidhu 0 2,925 07-20-2014, 08:34 AM
Last Post: bjitsidhu
  Is there a possible way to execute sql in QTP using 'WITH' clause shruthic 0 3,111 04-26-2014, 11:42 PM
Last Post: shruthic
  Data Table Query Suma Parimal 4 4,810 01-21-2014, 12:50 PM
Last Post: Suma Parimal

Forum Jump:


Users browsing this thread: 1 Guest(s)