What is wrong with this query?
Am trying to write an ImageMagick object back into a database (a PostgreSQL bytea field). This is PHP code - using the Imagick functions.
$query = "UPDATE table SET destcol = ".$im." WHERE key = " .$args[0];
|
What is wrong with this query? Am trying to write an ImageMagick object back into a database (a PostgreSQL bytea field). This is PHP code - using the Imagick functions.
| |||||
feedback
|
|
I'm going to guess that you're updating string columns without quoting them.;
| |||
feedback
|
|
If that
your query will fail. You cannot insert a PHP object into a database like that. At bare mininum, you must do something like
Also note that this will most likely fail - if the object is holding open files internally, those file handles will almost certainly not be valid once the object is pulled out of the database and unserialize()'d. Why do you need to preserve an imagick object in this fashion? The cost of instantiating it in the first place is not exactly high. | |||||||
feedback
|