Welcome Guest, Not a member yet? Register   Sign In
do restore from database backup
#5

[eluser]flaky[/eluser]
You could write a function, which takes the file ( the *.sql file ) and executes it.

The file uploading part do it in the controller, read the content and send it to the model,
then in the model do this

Code:
$query_list = explode(";", $file_content);

foreach($query_list as $query)
     $this->db->query($query);


Messages In This Thread
do restore from database backup - by El Forum - 12-16-2009, 10:05 AM
do restore from database backup - by El Forum - 12-16-2009, 10:21 AM
do restore from database backup - by El Forum - 12-16-2009, 12:19 PM
do restore from database backup - by El Forum - 12-21-2009, 10:17 PM
do restore from database backup - by El Forum - 12-22-2009, 01:36 AM
do restore from database backup - by El Forum - 12-22-2009, 10:38 PM
do restore from database backup - by El Forum - 12-23-2009, 12:50 AM



Theme © iAndrew 2016 - Forum software by © MyBB