See Re: Bind param error.
Alternatively, assign your SQL statement to a string, and print out that string. Then manually replace the placeholders with dummy values and run it in your SQL command line client.
| [reply] |
I think I do see your problem. You have # delimited comments in your SQL, which is legal in some environment (e.g. MySQL) but not in Oracle (based on some articles I just found via the Google.). Try again with your '#' characters swapped to '--', the Oracle way of doing line-end comments. | [reply] |
Kenneth, at the moment I do not have access to my code (my hard drive failed today), but I will try it.
Doug
| [reply] |