I've manually created a custom table, sdp_invites, for my wordpress (v3.4.2) site. I've done this many times in the past, but now I'm unable to use any of the $wpdb methods:
global $wpdb;
global $current_user;
$query = "INSERT INTO spd_invites (sender_id,receiver_id,job_id,job_title,job_slug,employer_id) VALUES ('{$current_user->ID}','{$resume->user_id}','{$job_id}','{$job_title}','{$job_slug}','{$employer_id}')";
$wpdb->get_results($query); //ERROR...
$wpdb->query($query); //ERROR...
Here's the error:
WordPress database error: [Table 'sow2.spd_invites' doesn't exist]
INSERT INTO spd_invites (sender_id,receiver_id,job_id,job_title,job_slug,employer_id) VALUES ('799','809','6','Professional Basket Weaver','professional-basket-weaver','5')
I know the table exists because I manually created it and I can see it in phpMyAdmin. Any idea why I'm getting this error?
UPDATE: The WP user is called "root" (on my local dev setup). Here's the privileges listed in phpMyAdmin:
User Host Type Privileges Grant Action
root localhost global ALL PRIVILEGES Yes
UPDATE2:
Just to rule out a bunch of possibilities, I tried a simpler query: "SELECT * FROM sdp_invites". This throws the same error. When I change to a wp core table, it works without error "SELECT * FROM sdp_invites"
$wpdb->prefix– doublesharp Oct 30 '12 at 21:11