Re: Parameterized SQL commands
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.
Subject
Written By
Posted
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.