WP Data Access Table Doesn’t Exist
-
Hello!
I’m working on coding a custom plugin which needs to query data from a simple table I created via WP Data Access using CSV upload. When I query the WordPress database, I receive the following error:
WordPress database error Table ‘lthshuya_wp893.productlookup’ doesn’t exist for query SELECT * FROM productlookup WHERE competitor_brand = ‘Hu Friedy’ AND competitor_part LIKE ‘%678-210%’
The database is lthshuya_wp224, but when I tried putting that before the table name, I got this error:
WordPress database error SELECT command denied to user ‘lthshuya_wp893’@’localhost’ for table
lthshuya_wp224
.productlookup
for query SELECT nordent_part FROM lthshuya_wp224.productlookup WHERE competitor_brand = ‘Hu Friedy’ AND competitor_part LIKE ‘%678-210%’I used the global $wpdb; to access the database so I’m not sure why there would be a permissions error. Could you please provide some direction as to how I can query the productlookup table?
Thank you!!!
The page I need help with: [log in to see the link]
- The topic ‘WP Data Access Table Doesn’t Exist’ is closed to new replies.