sql >> Databasteknik >  >> RDS >> Mysql

Hur kan jag köra ett sql-skript med CodeIgniter och skicka data till det?

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

det ursprungliga inlägget är här:https://gist.github.com/Relequestual/4088557



  1. Hur genererar man en trädvy från denna resultatuppsättning baserat på Tree Traversal Algorithm?

  2. php infogar preg_match_all array

  3. Hur får man genererade nycklar av executeBatch utan ArrayIndexOutOfBoundsException?

  4. PostgreSQL:Fjärranslutning till Postgres-instans med psql-kommandot