sql >> Databáze >  >> RDS >> Mysql

Jak mohu spustit skript SQL pomocí CodeIgniter a předat mu data?

$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);   
}

původní příspěvek je zde:https://gist.github.com/Relequestual/4088557



  1. Poloměr 40 kilometrů pomocí zeměpisné šířky a délky

  2. Jak vynutit omezení cizího klíče z nesouvisejících tabulek v Mysql?

  3. Jak najít nejpomalejší dotazy

  4. Efektivnější mít více sloupců nebo více řádků?