diff --git a/docs/Zebra_Database/Zebra_Database.html b/docs/Zebra_Database/Zebra_Database.html index 1cdd6af..3d3e756 100644 --- a/docs/Zebra_Database/Zebra_Database.html +++ b/docs/Zebra_Database/Zebra_Database.html @@ -456,10 +456,10 @@

integer | string top
-

boolean $halt_on_errors = true

+

mixed $halt_on_errors = true

When the value of this property is set to TRUE, the execution of the script will be halted after the first unsuccessful query and the debugging console will be shown (or debug information will be written to the log file if configured so), if the value of the debug property is not FALSE and the viewer's IP address is in the debugger_ip array (or debugger_ip is an empty array).

-

  1. // don't stop execution for unsuccessful queries (if possible)
  2. +

    If you want to stop on errors no matter what, set the value of this property to always and that will raise an exception regardless of the value of the debug property.

    If you ever consider using this with its value set to always, I recommend using the debug property with a string value instead.

    1. // don't stop execution for unsuccessful queries (if possible)
    2. $db->halt_on_errors false;

    Default is TRUE

    Tags