Skip to content

Instantly share code, notes, and snippets.

@nateperry
nateperry / MY_DB_mysql_driver.php
Last active April 19, 2016 08:40 — forked from stevenwoodson/MY_DB_mysql_driver.php
A Codigniter mysql driver that adds the ability to have "INSERT ... ON DUPLICATE UPDATE" statements. This is a forked version which has been changed to appear more inline with the built in Codeigniter functions.
<?php if (! defined('BASEPATH')) exit('No direct script access allowed');
class MY_DB_mysql_driver extends CI_DB_mysql_driver {
final public function __construct($params) {
parent::__construct($params);
}
/**
* Insert_On_Duplicate_Update