View previous topic :: View next topic |
Author |
Message |
NASCAR9 Intermediate
Joined: 08 Oct 2004 Posts: 274 Topics: 52 Location: California
|
Posted: Fri Dec 16, 2005 10:45 am Post subject: BLOB column |
|
|
I have a request for a Binary column in DB2. The only column I can find that meets this requirment is a BLOB.
I will be coding a stored procedure to access this table in COBOL.
Does anyone have experience with this type of column? _________________ Thanks,
NASCAR9 |
|
Back to top |
|
 |
Bill Dennis Advanced

Joined: 03 Dec 2002 Posts: 579 Topics: 1 Location: Iowa, USA
|
Posted: Fri Dec 16, 2005 4:48 pm Post subject: |
|
|
There CHAR columns that have the tag "FOR BIT DATA" so the values can be manipulated at the bit level by your program. _________________ Regards,
Bill Dennis
Disclaimer: My comments on this foorum are my own and do not represent the opinions or suggestions of any other person or business entity. |
|
Back to top |
|
 |
NASCAR9 Intermediate
Joined: 08 Oct 2004 Posts: 274 Topics: 52 Location: California
|
Posted: Mon Dec 19, 2005 10:44 am Post subject: |
|
|
Thanks Bill,
I ended up defining the column like this:
Code: |
TESTVAR VARCHAR(20) FOR BIT DATA
|
_________________ Thanks,
NASCAR9 |
|
Back to top |
|
 |
|
|