maxdb_report

(PECL maxdb 1.0)

maxdb_reportEnables or disables internal report functions

설명

bool maxdb_report ( int $flags )

인수

flags

One of the MAXDB_REPORT_XXX constants.

반환값

성공 시 TRUE를, 실패 시 FALSE를 반환합니다.

예제

Example #1 절차식 형식

<?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);
?>

위 예제의 출력 예시:

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