Conversion
-
how to convert a varchar value into varbinary at runtime iam using vb 6.0 as frontend and sql as backend
-
how to convert a varchar value into varbinary at runtime iam using vb 6.0 as frontend and sql as backend
give an example for your need
-
give an example for your need
the application is to create login id and i want the value i entered in password in varchar is reflected in login tables password column field as varbinary something like "convert( & txtpwd.text & as varbinary)" but in my form varbinary is not there
-
how to convert a varchar value into varbinary at runtime iam using vb 6.0 as frontend and sql as backend
I dont think that Vb has a built in conversion method for that, although I may be wrong. But you can use the Convert function in SQL to do it. CONVERT(varbinary(Length), @TheVarChar)) In your case, the length parameter would be optional -Jason -- modified at 4:07 Thursday 2nd February, 2006