7e13be08 |
1 | <?php // $Id$ |
2 | |
3 | /////////////////////////////////////////////////////////////////////////// |
4 | // // |
5 | // NOTICE OF COPYRIGHT // |
6 | // // |
7 | // Moodle - Modular Object-Oriented Dynamic Learning Environment // |
8 | // http://moodle.com // |
9 | // // |
ddaadc7c |
10 | // Copyright (C) 1999 onwards Martin Dougiamas http://dougiamas.com // |
7e13be08 |
11 | // // |
12 | // This program is free software; you can redistribute it and/or modify // |
13 | // it under the terms of the GNU General Public License as published by // |
14 | // the Free Software Foundation; either version 2 of the License, or // |
15 | // (at your option) any later version. // |
16 | // // |
17 | // This program is distributed in the hope that it will be useful, // |
18 | // but WITHOUT ANY WARRANTY; without even the implied warranty of // |
19 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // |
20 | // GNU General Public License for more details: // |
21 | // // |
22 | // http://www.gnu.org/copyleft/gpl.html // |
23 | // // |
24 | /////////////////////////////////////////////////////////////////////////// |
25 | |
eef868d1 |
26 | /// This library contains all the Data Manipulation Language (DML) functions |
7e13be08 |
27 | /// used to interact with the DB. All the dunctions in this library must be |
28 | /// generic and work against the major number of RDBMS possible. This is the |
29 | /// list of currently supported and tested DBs: mysql, postresql, mssql, oracle |
30 | |
9f948d11 |
31 | /// This library is automatically included by Moodle core so you never need to |
32 | /// include it yourself. |
7e13be08 |
33 | |
34 | /// For more info about the functions available in this library, please visit: |
35 | /// http://docs.moodle.org/en/DML_functions |
36 | /// (feel free to modify, improve and document such page, thanks!) |
37 | |