Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Passing Multidimensional array to sql server 7.0 stored procedure?

Status
Not open for further replies.

ramki431

IS-IT--Management
Aug 8, 2001
6
US
Does it possible to pass a multi dimensional array to a
stored procedure in sql server 7.0?

Please pass on some examples if any of you have.
 
There is no array variable, single or multi-dimensional in SQL Server. Download scripts from the following links to see ways to handle delimited strings as arrays.

Terry L. Broadbent
Programming and Computing Resources
 
If you are fimilar with ADO, you can use ADO to create a temporary table which you could load with your array. In the stored procedure you could read the values out of the temporary table and then drop the table when you are finished.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top