Thanks WP 3.5 for the change! What do you do when you get the error: “Missing argument 2 for wpdb::prepare()”
Last Sunday, I was feeling pretty good about my plug-in and my new website over at TheWebReviewer.com. Everything was running smoothly, most of my links where current. The Google bots weren’t complaining too much.
Excellent!
Time to upgrade to Wordpress Version 3.5, right!
Damn.
So I did that and errors popped up all over the place:
Warning: Missing argument 2 for wpdb::prepare(), called in /home/blah/public_html/wp-content/plugins/reviewpress/blah/my.class.php on line 64 and defined in /home/blh/public_html/wp-includes/wp-db.php on line 990
That sucks.
Well, it seems like WP decided to add a new argument to the prepare() function of Wordpress. (Why they just didn’t make it an optional parameter is beyond me.) Anyway, it really wasn’t a big deal.
First, the prepare function (a part of the database class) is meant to handle escaping, quoting, and int-casting for SQL queries. Its a good clean-up function.
The extra argument(s) are a “smarter” way of inserting variables into the SQL requests. For example:
$wpdb->get_results($wpdb->prepare(’SELECT cat_id FROM “$cat” WHERE pid = 1′));
would now become:
$wpdb->get_results($wpdb->prepare(”SELECT cat_id FROM “%s” WHERE pid = 1″,$cat));
Note that the variable was redefined within the query as a data type and the variable is the second variable parameter.
In most of my cases, I define the query elsewhere:
$mysql = “SELECT cat_id FROM $cat WHERE pid = ‘1′”;
$catId = $wpdb->get_results($wpdb->prepare($mysql)); // BEFORE (Got the Error)
$catId =$wpdb->get_results($wpdb->prepare($mysql,0)); // AFTER (No Error)
Here, I just added a zero to the second argument and everything was happy.
(Still kind of a pain in my butt to go through all of my classes and fix!)
cheers…matt
|
Don't Buy Another Money Making Product Until You Watch These FREE Videos! |
My name is Matthew Bredel and as of March, 2007, I am a full-time, work-at-home internet marketer.
For close to 10 years, I worked for a defense company which was an OK job, but I was so uninspired in life and frankly, I needed some more money. That is when I first discovered internet marketing! Now I admit that I didn't start making thousands in my first couple of months (in fact, I lost my shirt!), but I finally saw the "internet light"...