Note: You are currently viewing documentation for Moodle 2.2. Up-to-date documentation for the latest stable version is available here: DML exceptions.

Development:DML exceptions: Difference between revisions

From MoodleDocs
(→‎dml_read_exception: fix read -> write)
 
Line 12: Line 12:
Problem occurred during reading from database. Originally indicated be returning ''false'' - this value was often confused with ''false'' return value meaning ''not found''.
Problem occurred during reading from database. Originally indicated be returning ''false'' - this value was often confused with ''false'' return value meaning ''not found''.


===dml_read_exception===
===dml_write_exception===
Problem occurred during writing to database. Originally indicated be returning ''false''.
Problem occurred during writing to database. Originally indicated be returning ''false''.



Latest revision as of 21:23, 30 November 2008

Template:Moodle 2.0In previous versions problems in database calls were ignored by default.

Overview

Dml exceptions.png

Defined in lib/dmllib.php for now.

dml_connection_exception

Thrown when can not connect to database for any reason.

dml_read_exception

Problem occurred during reading from database. Originally indicated be returning false - this value was often confused with false return value meaning not found.

dml_write_exception

Problem occurred during writing to database. Originally indicated be returning false.

See also

  • Exceptions: General guidelines for using of exceptions in Moodle 2.0
  • DML functions: Where all the functions used to handle DB data. (DML) are defined.
  • DDL functions: Where all the functions used to handle DB objects (DDL) are defined.