vote up 2 vote down star

I've been using the following snippet in developements for years. Now all of a sudden I get a DB Error: no such field warning

$process = "process";
$create = $connection->query
(
	"INSERT INTO summery (process) VALUES($process)"
);
if (DB::isError($create)) die($create->getMessage($create));

but it's fine if I use numerics

$process = "12345";
$create = $connection->query
(
	"INSERT INTO summery (process) VALUES($process)"
);
if (DB::isError($create)) die($create->getMessage($create));

or write the value directly into the expression

$create = $connection->query
(
	"INSERT INTO summery (process) VALUES('process')"
);
if (DB::isError($create)) die($create->getMessage($create));

I'm really confused ... any suggestions?

flag
It would be very helpful to readers and you would get more meaningful and accurate answers if you provided the name of the DB API you're using. – converter42 Nov 30 '08 at 19:47
Perhaps a ghost teases you from the machine because you misspelled "summary". – Svante Nov 30 '08 at 20:25

3 Answers

vote up 0 vote down

thanks paul - that was driving me mad!

link|flag
you should go ahead and mark paul's answer. Just click on the big hollow check mark under vote up number. – smazurov Nov 30 '08 at 19:27
No - don't mark Paul's answer, mark Zan's. Never, ever, ever, use a variable like that in SQL. Always use a prepared statement. – Alnitak Dec 1 '08 at 0:01
vote up 7 vote down

It's always better to use prepared queries and parameter placeholders. Like this in Perl DBI:

my $process=1234;
my $ins_process = $dbh->prepare("INSERT INTO summary (process) values(?)");
$ins_process->execute($process);

For best performance, prepare all your often-used queries right after opening the database connection. Many database engines will store them on the server during the session, much like small temporary stored procedures.

Its also very good for security. Writing the value into an insert string yourself means that you must write the correct escape code at each SQL statement. Using a prepare and execute style means that only one place (execute) needs to know about escaping, if escaping is even necessary.

link|flag
vote up 0 vote down

Ditto what Zan Lynx said about placeholders. But you may still be wondering why your code failed.

It appears that you forgot a crucial detail from the previous code that worked for you for years: quotes.

This (tested) code works fine:

my $thing = 'abcde';
my $sth = $dbh->prepare("INSERT INTO table1 (id,field1)
                              VALUES (3,'$thing')");
$sth->execute;

But this next code (lacking the quotation marks in the VALUES field just as your first example does) produces the error you report because VALUES (3,$thing) resolves to VALUES (3,abcde) causing your SQL server to look for a field called abcde and there is no field by that name.

my $thing = 'abcde';
my $sth = $dbh->prepare("INSERT INTO table1 (id,field1)
                              VALUES (3,$thing)");
$sth->execute;

All of this assumes that your first example is not a direct quote of code that failed as you describe and therefore not what you intended. It resolves to:

"INSERT INTO summery (process) VALUES(process)"

which, as mentioned above causes your SQL server to read the item in the VALUES set as another field name. As given, this actually runs on MySQL without complaint and will fill the field called 'process' with NULL because that's what the field called 'process' contained when MySQL looked there for a value as it created the new record.

I do use this style for quick throw-away hacks involving known, secure data (e.g. a value supplied within the program itself). But for anything involving data that comes from outside the program or that might possibly contain other than [0-9a-zA-Z] it will save you grief to use placeholders.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.