Re: Parameterized SQL commands
Posted by: Reggie Burnett
Date: October 03, 2004 12:28PM

Did you enabled "old syntax" on your connection string? You are using the @ sign to mark your parameters. This is old syntax. new code should use ? for that. So your sql should be INSERT INTO table1 (userid) VALUES (?userid) and the name of your parameter should be ?userid.


Options: ReplyQuote


Subject
Written By
Posted
October 01, 2004 12:10PM
Re: Parameterized SQL commands
October 03, 2004 12:28PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.