Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Encoding question
Message
From
11/11/2013 10:20:15
 
 
General information
Forum:
ASP.NET
Category:
Other
Environment versions
Environment:
VB 9.0
OS:
Windows Server 2012
Network:
Windows 2008 Server
Database:
MS SQL Server
Application:
Web
Miscellaneous
Thread ID:
01587700
Message ID:
01587750
Views:
28
>I see you have this working but it occurred to me that it might be possible to do this in TSQL using CONVERT/COLLATE. But my SQL knowledge is so limited I'm not sure exactly how you'd do it :-{

Seems to work, Viv
declare @Tmp table
(	Passwd	char(10)
);

insert into @Tmp (Passwd) values ('†12345');

select convert(binary(10), Passwd) from @Tmp;
http://msdn.microsoft.com/en-us/library/ms187928.aspx
Gregory
Previous
Reply
Map
View

Click here to load this message in the networking platform