sql >> データベース >  >> RDS >> Mysql

CodeIgniterでSQLスクリプトを実行し、それにデータを渡すにはどうすればよいですか?

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

    元の投稿はこちら: https://gist.github.com/Relequestual/4088557



    1. mysql search / likeクエリを適切にエスケープするにはどうすればよいですか?

    2. pg_stat_activity-実行中のストアドプロシージャ内の現在のアクティビティを確認する方法

    3. 配列をMySQLストアドルーチンに渡す

    4. 文字列を行に分割