sql >> Database teknologi >  >> RDS >> Mysql

batch udskiftning til CodeIgniter Active Record

Hvis du vil klone mit lager jeg har implementeret. Jeg prøvede at få løsningen ind i hovedgrenen, men det ser ud til, at narfbg er stejlt imod det. Måske kunne noget mere deltagelse fra samfundet få det implementeret.

/**
 * Replace_Batch
 *
 * Compiles batch insert strings replacing any existing rows and runs the queries
 *
 * @param   string  $table  Table to replace insert into
 * @param   array   $set    An associative array of insert values
 * @param   bool    $escape Whether to escape values and identifiers
 * @return  int Number of rows inserted or FALSE on failure
 */
public function replace_batch($table, $set = NULL, $escape = NULL, $batch_size = 100)
{
    if ($set === NULL)
    {
        if (empty($this->qb_set))
        {
            return ($this->db_debug) ? $this->display_error('db_must_use_set') : FALSE;
        }
    }
    else
    {
        if (empty($set))
        {
            return ($this->db_debug) ? $this->display_error('replace_batch() called with no data') : FALSE;
        }

        $this->set_insert_batch($set, '', $escape);
    }

    if (strlen($table) === 0)
    {
        if ( ! isset($this->qb_from[0]))
        {
            return ($this->db_debug) ? $this->display_error('db_must_set_table') : FALSE;
        }

        $table = $this->qb_from[0];
    }

    // Batch this baby
    $affected_rows = 0;
    for ($i = 0, $total = count($this->qb_set); $i < $total; $i += $batch_size)
    {
        if ($this->query($this->_replace_batch($this->protect_identifiers($table, TRUE, $escape, FALSE), $this->qb_keys, array_slice($this->qb_set, $i, $batch_size))))
        {
            $affected_rows += $this->affected_rows();
        }
    }

    $this->_reset_write();
    return $affected_rows;
}

// --------------------------------------------------------------------

/**
 * Replace batch statement
 *
 * Generates a platform-specific insert string from the supplied data.
 *
 * @param   string  $table  Table name
 * @param   array   $keys   INSERT keys
 * @param   array   $values INSERT values
 * @return  string
 */
protected function _replace_batch($table, $keys, $values)
{
    return 'REPLACE INTO '.$table.' ('.implode(', ', $keys).') VALUES '.implode(', ', $values);
}

Ovenfor er nøjagtig samme kode som på Github, bare så løsningen kan indekseres tilbage til stackoverflow.com. Men desværre er mit svar på stackoverflow begrænset til 30.000 tegn, så jeg kan ikke indsætte hele commit, som også inkluderer ændringer af db-drivere.




  1. ODP.NET output String parameter returnerer ikke værdi

  2. Ydeevnesammenligning mellem sql SELECT NULL og SELECT 1

  3. MySQL:Vælg alle datoer i et interval, selvom der ikke er nogen registreringer til stede

  4. Del forbindelse til postgres db på tværs af processer i Python