Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Passing an "in" string to a Stored Procedure

Passing an "in" string to a Stored Procedure

From: Paul Dudley <dudley_at_ionet.net>
Date: 1998/04/07
Message-ID: <352AF347.5CF2A13B@ionet.net>#1/1

I have a stored procedure that I would like to pass a parameter to that contains a list of numbers to be used as part of an "IN" for the Where clause.

SELECT * FROM table
WHERE id IN ( idlist)

idlist would be a string such as "1,2,3,4"

The problem is that the id field is a NUMBER in the database and the value passed in is a string. If only one value is passed in, an implicit conversion is done, but if more than one is provided, I get an error message indicating it is an invalid number.

Anyone have any suggestions? Received on Tue Apr 07 1998 - 00:00:00 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US