sql >> Database >  >> RDS >> Mysql

Hoe kan ik een sql-script uitvoeren met CodeIgniter en er gegevens aan doorgeven?

$sql = file_get_contents("update-001.sql");

/*
Assuming you have an SQL file (or string) you want to run as part of the migration, which has a number of statements...
CI migration only allows you to run one statement at a time. If the SQL is generated, it's annoying to split it up and create separate statements.
This small script splits the statements allowing you to run them all in one go.
*/

$sqls = explode(';', $sql);
array_pop($sqls);

foreach($sqls as $statement){
    $statment = $statement . ";";
    $this->db->query($statement);   
}

originele post is hier:https://gist.github.com/Relequestual/4088557



  1. MySQL:kolom in tweeën splitsen

  2. Wat is beter? Subquery's of innerlijke samenvoeging van tien tabellen?

  3. MySQL - Verwijder waarde in de rij, in plaats van de rij te verwijderen

  4. SQL Self-join met gegevensvergelijking voor verschillende dagen