[moodle] / moodle / lib / dml / mysqli_native_moodle_temptables.php Repository:

View of /moodle/lib/dml/mysqli_native_moodle_temptables.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (download) (annotate)
Tue Sep 1 00:14:44 2009 WST (2 months, 3 weeks ago) by stronk7
Branch: MAIN
CVS Tags: MOODLE_19_MERGED, HEAD
MDL-15181 temporary tables - now mysql driver uses the temptables object to
solve its carences handling temp tables.
<?php

// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.

/**
 * MSSQL specific temptables store. Needed because temporary tables
 * are named diferently than normal tables. Also used to be able to retrieve
 * temp table names included in the get_tables() method od the DB.
 *
 * @package    moodlecore
 * @subpackage DML
 * @copyright  2009 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 */

require_once($CFG->libdir.'/dml/moodle_temptables.php');

class mysqli_native_moodle_temptables extends moodle_temptables {
    /// I love these classes :-P
}

Moodle CVS Admin
ViewVC Help
Powered by ViewVC 1.0.7