maxdb_report

(PECL maxdb 1.0)

maxdb_reportEnables or disables internal report functions

Opis

maxdb_report ( int $flags ) : bool

Parametry

flags

One of the MAXDB_REPORT_XXX constants.

Zwracane wartości

Zwraca TRUE w przypadku powodzenia, FALSE w przypadku błędu.

Przykłady

Przykład #1 Styl proceduralny

<?php
/* activate reporting */
maxdb_report(MAXDB_REPORT_ERROR);

$link maxdb_connect("localhost""MONA""RED""DEMODB");

/* check connection */
if (maxdb_connect_errno()) {
   
printf("Connect failed: %s\n"maxdb_connect_error());
   exit();
}

/* this query should report an error */
$result maxdb_query($link,"SELECT Name FROM Nonexistingtable WHERE population > 50000");

maxdb_close($link);
?>

Powyższy przykład wyświetli coś podobnego do:

Warning: maxdb_query(): -4004 POS(18) Unknown table name:NONEXISTINGTABLE <...>
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top