in reply to how to use place holders?
Should be:$INSERT_CURSOR->execute();
As you have two place holders but in your $INSERT_CURSOR but no variables bound to them when you call execute it. Note that in the above the variables $some_var, and $some_other_var relate to the two ? in your statement. Have a look at: The DBI Documention on Placeholders$INSERT_CURSOR->execute($some_var,$some_other_var);
-enlil
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: how to use place holders?
by Anonymous Monk on Aug 03, 2005 at 21:14 UTC |