‎2007 Aug 29 7:52 AM
What is the raw data type called ...
In db table i saw there is a raw type for a variable.
I was accessing the table giving query with condition that varname = 2,it is not getting the values equal to 2.
‎2007 Aug 29 7:56 AM
Hi
RAW data type use to store data in byte sequence . so if you check with numerice you will not get any record.
Thanks
Venkat
‎2007 Aug 29 7:59 AM
Check by giving the condition as varname = '2'.
For string comparisons you have to give the values inside the single quotes ( ' ).
If there are zeros before 2, give the exact number of Zeros
‎2007 Aug 29 8:13 AM
It is not taking like tht also.Its not a string.Do u know any conversion process
‎2007 Aug 29 9:01 AM
can u tell me what data type are you giving as input?? (i.e. value 2)
‎2007 Aug 29 7:59 AM
‎2007 Aug 29 8:00 AM
You need to convert integer '2' into RAW type.. else it will not recognise the value...