CodeIgniter Forums
How can I list my database tables? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: How can I list my database tables? (/showthread.php?tid=9513)



How can I list my database tables? - El Forum - 06-27-2008

[eluser]EEssam[/eluser]
Hello,

I'm wondering how it's possible to list my database table?

I can't find that here:

http://ellislab.com/codeigniter/user-guide/database/utilities.html

Thanks.


How can I list my database tables? - El Forum - 06-27-2008

[eluser]Michael Wales[/eluser]
Code:
$this->db->list_tables();
Required reading


How can I list my database tables? - El Forum - 06-27-2008

[eluser]EEssam[/eluser]
Thank you very much for the quick help.