i am using sql server
how can i store and get the binary val in tables
| SitePoint Sponsor |
i am using sql server
how can i store and get the binary val in tables
Ankit Aneja
"Nothing is impossible. The word itself says - I M possible"





insert into table_name (etc1, etc2)
values (convert(binary, etc1), etc2)
select convert(varchar,etc1) from table_name
Afrika
Bookmarks