Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: rboccuzziBoth our JDBC and ODBC node support binding (see node documentation). However in both cases, just because of how Oracle works with values, you can't bind values to an "in" statement. Bindings are for single values, and the "in" statement takes an array, so you will get type issues. Another way to do this, with a bit more work, is to load the values into a table and then do a join against the table. While cumbersome, it is another option that might suit your needs, depending on situation.
Cheers
Rich