Changeset 1656

Show
Ignore:
Timestamp:
01/01/2008 10:58:32 PM (12 months ago)
Author:
zombor
Message:

Attempt to fix a mysqli charset bug

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/libraries/drivers/Database_Mysqli.php

    r1655 r1656  
    7575        } 
    7676 
     77        public function set_charset($charset) 
     78        { 
     79                if ($this->link->set_charset($charset) === FALSE) 
     80                        throw new Kohana_Database_Exception('database.error', 'Could not set the charset to '.$charset);; 
     81        } 
     82 
    7783        public function stmt_prepare($sql = '', $label) 
    7884        {