I'd like to write a T-SQL query where I encode a string as a Base64 string. Surprisingly, I can't find any native T-SQL functions for doing Base64 encoding. Does a native function exist? If not, what's the best way to do Base64 encoding in T-SQL?
|
I know this has already been answered, but I just spent more time than I care to admit coming up with single-line SQL statements to accomplish this, so I'll share them here in case anyone else needs to do the same:
I had to use a subquery-generated table in the first (encoding) query because I couldn't find any way to convert the original value ("TestData") to its hex string representation ("5465737444617461") to include as the argument to xs:hexBinary() in the XQuery statement. I hope this helps someone! |
|||||||
|
|
Here's a modification to mercurial's answer that uses the subquery on the decode as well, allowing the use of variables in both instances.
|
|||
|
|
|
No, there is no native function, this method has worked for me in the past:
http://www.motobit.com/help/scptutl/sa306.htm |
|||
This is usefull for encode and decode. By Bharat J |
|||
|
|