What could be causing the database retrieval error? |
I'm using CodeIgniter 4, and I encountered an error (Call to a member function table() on null) when trying to retrieve records from the database using the following code:
$CI = & get_instance(); $CI->db->select('*'); $CI->db->from($table_name). I then referred to the documentation and tried using the $db->table("tablename") method, but it also failed. |
Messages In This Thread |
What could be causing the database retrieval error? - by RohanxSiriya - 05-15-2023, 12:52 AM
RE: What could be causing the database retrieval error? - by Mni.day - 05-15-2023, 09:46 AM
RE: What could be causing the database retrieval error? - by kilishan - 05-15-2023, 01:35 PM
RE: What could be causing the database retrieval error? - by InsiteFX - 05-15-2023, 11:29 PM
RE: What could be causing the database retrieval error? - by kilishan - 05-16-2023, 06:21 AM
|