Welcome Guest, Not a member yet? Register   Sign In
Simple tool for Scaffolding to manage all tables faster
#3

[eluser]sophistry[/eluser]
Thank you! This is nice.

Better db portablility may be achieved by using CI table listing function:
http://ellislab.com/codeigniter/user-gui..._data.html

EDIT: edited code for even better code portability. This is not the best, long-term way to get the scaffolding_trigger word, but it works.
Code:
// should be more portable, also not hard coded with db name
// since it is in config file already, code not tested on multiple dbs
// assumes db library is loaded
function index()
       {
           $tables = $this->db->list_tables();
            foreach ($tables as $table)
            {
            echo '<a href="'.site_url(__CLASS__.'/'.$this->uri->router->routes['scaffolding_trigger']).'/'.$table.'">'.$table.'</a><br />';
            }
       }


Messages In This Thread
Simple tool for Scaffolding to manage all tables faster - by El Forum - 11-23-2007, 07:27 PM
Simple tool for Scaffolding to manage all tables faster - by El Forum - 11-26-2007, 02:54 PM
Simple tool for Scaffolding to manage all tables faster - by El Forum - 11-29-2007, 08:55 AM
Simple tool for Scaffolding to manage all tables faster - by El Forum - 11-29-2007, 10:10 AM
Simple tool for Scaffolding to manage all tables faster - by El Forum - 11-29-2007, 10:51 AM
Simple tool for Scaffolding to manage all tables faster - by El Forum - 12-22-2007, 02:05 AM
Simple tool for Scaffolding to manage all tables faster - by El Forum - 12-22-2007, 05:31 PM
Simple tool for Scaffolding to manage all tables faster - by El Forum - 12-22-2007, 06:25 PM
Simple tool for Scaffolding to manage all tables faster - by El Forum - 12-22-2007, 09:44 PM
Simple tool for Scaffolding to manage all tables faster - by El Forum - 12-23-2007, 09:38 AM
Simple tool for Scaffolding to manage all tables faster - by El Forum - 12-24-2007, 10:01 PM
Simple tool for Scaffolding to manage all tables faster - by El Forum - 12-24-2007, 11:00 PM
Simple tool for Scaffolding to manage all tables faster - by El Forum - 12-27-2007, 11:08 AM
Simple tool for Scaffolding to manage all tables faster - by El Forum - 12-27-2007, 11:40 AM
Simple tool for Scaffolding to manage all tables faster - by El Forum - 01-05-2008, 04:39 AM
Simple tool for Scaffolding to manage all tables faster - by El Forum - 01-21-2008, 07:46 PM
Simple tool for Scaffolding to manage all tables faster - by El Forum - 11-18-2010, 11:55 PM
Simple tool for Scaffolding to manage all tables faster - by El Forum - 11-19-2010, 08:17 AM
Simple tool for Scaffolding to manage all tables faster - by El Forum - 01-04-2011, 10:27 PM
Simple tool for Scaffolding to manage all tables faster - by El Forum - 01-07-2011, 08:37 PM



Theme © iAndrew 2016 - Forum software by © MyBB