hello all,
I have a webpage that stores changes to a table's cells. I store the changes in a javascript array and then pass them to a textbox as a comma delimited string. the string consists of multiple 4 value segments with each element separated by a comma. ie...
id,val1,val2,val3,id2,val1,val2,val3,id3,val1,val2,val3....
I know there is a limit to the number of characters a varchar can contain(8000 I think). My question is I want to pass this comma delimited string to a stored procedure that would update a table with the fields ID,VAL1,VAL2,VAL3. Is there some type of command that would allow me to pass a comma delimited string as a parameter?
Any help or suggestions would be appreciated.
tsmith
I have a webpage that stores changes to a table's cells. I store the changes in a javascript array and then pass them to a textbox as a comma delimited string. the string consists of multiple 4 value segments with each element separated by a comma. ie...
id,val1,val2,val3,id2,val1,val2,val3,id3,val1,val2,val3....
I know there is a limit to the number of characters a varchar can contain(8000 I think). My question is I want to pass this comma delimited string to a stored procedure that would update a table with the fields ID,VAL1,VAL2,VAL3. Is there some type of command that would allow me to pass a comma delimited string as a parameter?
Any help or suggestions would be appreciated.
tsmith