Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

DATA TYPE

Former Member
0 Likes
674

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.

6 REPLIES 6
Read only

Former Member
0 Likes
650

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

Read only

Former Member
0 Likes
650

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

Read only

0 Likes
650

It is not taking like tht also.Its not a string.Do u know any conversion process

Read only

0 Likes
650

can u tell me what data type are you giving as input?? (i.e. value 2)

Read only

Former Member
0 Likes
650

RAW is a Data types of the external layer

Read only

Former Member
0 Likes
650

You need to convert integer '2' into RAW type.. else it will not recognise the value...