Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Data manipulation API: Difference between revisions

From MoodleDocs
Line 78: Line 78:
  o $DB->get_field_sql($sql, array $params=null)
  o $DB->get_field_sql($sql, array $params=null)
   Get a single field value (first field) using a SQL statement.
   Get a single field value (first field) using a SQL statement.


===Getting a particular field value from various records===
===Getting a particular field value from various records===

Revision as of 18:34, 25 July 2008

Moodle 2.0

In this page you'll access to the available functions under Moodle to be able to access to DB data. You should use exclusively these functions in order to retrieve or modify DB contents because these functions provide an high level of abstraction and guarantee that your DB manipulation will work against different RDBMS.

Where possible, tricks and examples will be documented here in order to make developers's life a bit easier. Of course, feel free to clarify, complete and add more info to all this documentation. It will be welcome, absolutely!

Main info

Important note: All the functions showed in this page are for use in Moodle 2.0 upwards, where we changed the DB layer to support some new features. If you need information for previous Moodle version, take a look to the DML functions - pre 2.0 page.

  • All the function calls in this page are public methods of the $DB global object. So you'll need to "import" it within your functions (not needed in global scripts) with one simple:
 global $DB;
  • All the $table parameters in the functions are mean to be the table name 'without prefixes.
 $user = $DB->get_record('user', array('id'=>'1');
  • When using the xxx_sql() functions, table names must be enclosed between curly braces.
 $user = $DB->get_record_sql('SELECT * FROM {user} WHERE id = ?', array(1));
  • All the $conditions parameters in the functions are arrays of fieldname=>fieldvalue elements.
 $user = $DB->get_record('user', array('firstname'=>'Martin', 'lastname'=>'Dougiamas');
  • All the $params parameters in the functions are arrays of values used to fill placeholders in SQL statements. Both question mark and named placeholders can be used.
o Question mark placeholders:
  $DB->get_record_sql('SELECT * FROM {user} WHERE firstname = ? AND lastname = ?', 
                      array('Martin', 'Dougiamas'));
o Named placeholders:
  $DB->get_record_sql('SELECT * FROM {user} WHERE firstname = :firstname AND lastname = :lastname',
                      array('firstname'=>'Martin', 'lastname'=>'Dougiamas'));

The functions

Seeing how many records match a given criteria

o $DB->count_records($table, array $conditions=null) 
  Count the records in a table where all the given conditions met.
o $DB->count_records_select($table, $select, array $params=null, $countitem="COUNT('x')") 
  Count the records in a table which match a particular WHERE clause.
o $DB->count_records_sql($sql, array $params=null) 
  Get the result of a SQL SELECT COUNT(...) query.


Seeing if one record exists

o $DB->record_exists($table, array $conditions=null) 
  Test whether a record exists in a table where all the given conditions met.
o $DB->record_exists_select($table, $select, array $params=null) 
  Test whether any records exists in a table which match a particular WHERE clause.
o $DB->record_exists_sql($sql, array $params=null) 
  Test whether a SQL SELECT statement returns any records.


Retrieving a single record

o $DB->get_record($table, array $conditions, $fields='*', $ignoremultiple=false) 
  Get a single database record as an object where all the given conditions met.
o $DB->get_record_select($table, $select, array $params=null, $fields='*', $ignoremultiple=false)
  Get a single database record as an object which match a particular WHERE clause.
o $DB->get_record_select($table, $select, array $params=null, $fields='*', $ignoremultiple=false)
  Get a single database record as an object using a SQL statement.


Getting an array of records

o $DB->get_records($table, array $conditions=null, $sort=, $fields='*', $limitfrom=0, $limitnum=0) 
  Get a number of records as an array of objects where all the given conditions met.
o $DB->get_records_select($table, $select, array $params=null, $sort=, $fields='*', $limitfrom=0, $limitnum=0) 
  Get a number of records as an array of objects which match a particular WHERE clause.
o $DB->get_records_sql($sql, array $params=null, $limitfrom=0, $limitnum=0)
  Get a number of records as an array of objects using a SQL statement.

o $DB->get_records_menu($table, array $conditions=null, $sort=, $fields='*', $limitfrom=0, $limitnum=0) 
  Get the first two columns from a number of records as an associative array where all the given conditions met.
o $DB->get_records_select_menu($table, $select, array $params=null, $sort=, $fields='*', $limitfrom=0, $limitnum=0)
  Get the first two columns from a number of records as an associative array which match a particular WHERE clause.
o $DB->get_records_sql_menu($sql, array $params=null, $limitfrom=0, $limitnum=0)
  Get the first two columns from a number of records as an associative array using a SQL statement.

o $DB->get_records_list($table, $field=, $values=, $sort=, $fields='*', $limitfrom=, $limitnum=) 
  Get a number of records as an array of objects where one field match one list of values.


Getting a particular field value from one record

o $DB->get_field($table, $return, array $conditions)
  Get a single field value from a table record where all the given conditions met.
o $DB->get_field_select($table, $return, $select, array $params=null)
  Get a single field value from a table record which match a particular WHERE clause.
o $DB->get_field_sql($sql, array $params=null)
  Get a single field value (first field) using a SQL statement.


Getting a particular field value from various records

o $DB->get_fieldset_select($table, $return, $select, array $params=null)
  Selects records and return values of chosen field as an array which match a particular WHERE clause.
o $DB->get_fieldset_sql($sql, array $params=null)
  Selects records and return values (first field) as an array using a SQL statement.

Setting a particular field in the database

o $DB->set_field($table, $newfield, $newvalue, array $conditions=null)
  Set a single field in every table record where all the given conditions met.
o $DB->set_field_select($table, $newfield, $newvalue, $select, array $params=null)
  Set a single field in every table record which match a particular WHERE clause.


Deleting Records

o $DB->delete_records($table, array $conditions=null) 
  Delete the records from a table where all the given conditions met.
o $DB->delete_records_select($table, $select, array $params=null)
  Delete one or more records from a table which match a particular WHERE clause.

Inserting Records

o $DB->insert_record($table, $dataobject, $returnid=true, $bulk=false) 
  Insert a record into a table and return the "id" field if required.


Updating Records

o $DB->update_record($table, $dataobject, $bulk=false)
  Update a record in a table.


Using Recordsets

While the number of records to be retrieved from DB is high, the get_records_xxx() functions above are far from optimal, because they use to load all the records in memory at the same time. Under those circumstances, it's highly recommended to use this get_recordset_xxx() functions instead, using one nice mechanism to iterate over all the target records saving a lot of memory.

Only one thing is absolutely important. Don't forget to close the record sets after using them! (that will freed a lot of resources in the RDBMS).

Here it's the general way to iterate over records using the get_recordset_xxx() functions:


And this is the list of available functions (100% paired with the get_records_xxx() above):

o $DB->get_recordset($table, array $conditions=null, $sort=, $fields='*', $limitfrom=0, $limitnum=0) 
  Get a number of records as a moodle_recordset where all the given conditions met.
o $DB->get_recordset_select($table, $select, array $params=null, $sort=, $fields='*', $limitfrom=0, $limitnum=0) 
  Get a number of records as a moodle_recordset which match a particular WHERE clause.
o $DB->get_recordset_sql($sql, array $params=null, $limitfrom=0, $limitnum=0);
  Get a number of records as a moodle_recordset using a SQL statement.

o $DB->get_recordset_list($table, $field=, $values=, $sort=, $fields='*', $limitfrom=, $limitnum=) 
  Get a number of records as a moodle_recordset where one field match one list of values.

Helper Functions

See also