Mysql
 sql >> Baza danych >  >> RDS >> Mysql

Jak mogę wykonać skrypt sql za pomocą CodeIgniter i przekazać do niego dane?

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

oryginalny post jest tutaj:https://gist.github.com/Relequestual/4088557



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. mysqldump z utf8 nie może wyeksportować prawidłowego ciągu emoji

  2. Mysql Split String i Select z wynikami

  3. Wyjaśnienie kolejności łączenia w celu tworzenia tabel tymczasowych

  4. Liczenie pól o tej samej wartości

  5. Jak wyświetlić parametry procedury składowanej mysql?