Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Varbinary to stored procedures
Message
From
04/01/2011 04:42:37
 
 
To
All
General information
Forum:
Microsoft SQL Server
Category:
Stored procedures, Triggers, UDFs
Title:
Varbinary to stored procedures
Environment versions
SQL Server:
SQL Server 2005
Application:
Desktop
Miscellaneous
Thread ID:
01494563
Message ID:
01494563
Views:
162
HI ALL, 
              
My first question , because i want to do a login table but the varbinary is very difficult to handle...
warning :Msg 402, Level 16, State 1, Procedure spUpdateTwoField, Line 11
The data types nvarchar and varbinary are incompatible in the add operator.

My code
Create procedure [dbo].[spUpdateTwoField](@tablename nvarchar(255), @pKey varchar(20), @valueOne varbinary) 
as 
	declare @sql nvarchar(4000)
	set @sql =  'update ' + @tablename + ' set  password = ''' + @valueOne+ ''' where id = ''' + @pKey + ''''
	execute sp_executesql @sql

	return

-----------------------------------------------------------------------------------------------------

Question Second, i want to know stored procedure can use array ?
Because my stored procedure , i want to do a update function from array to stored the field name....
In this code, i already to do a insert function , but all field name store in @Column_List , how can i use array to call ...
for example ... @Column_List [0], @Column_List [1] to use 
Next
Reply
Map
View

Click here to load this message in the networking platform