$wpdb->insert not working. No Error Msg

后端 未结 4 815
陌清茗
陌清茗 2021-02-19 18:29

Got the lower portion here sorted, but now there\'s an issue when it inserts the record. I have the NULL value for file formatted as %s fo

4条回答
  •  野趣味
    野趣味 (楼主)
    2021-02-19 18:55

    If you want to get the last error and last query you can use this properties of $wpdb object:

    $wpdb->last_error 
    

    will show you the last error, if you got one.

    $wpdb->last_query 
    

    will assist you with showing the last query (where the error occurred)

    I hope this will help you out.

提交回复
热议问题