mirror of
https://github.com/MariaDB/server.git
synced 2025-08-09 22:24:09 +03:00
manual.texi Correct error in DBI NULLABLE description.
Docs/manual.texi: Correct error in DBI NULLABLE description.
This commit is contained in:
@@ -40739,9 +40739,11 @@ $rv = $sth->rows;
|
|||||||
@findex DBI->@{NULLABLE@}
|
@findex DBI->@{NULLABLE@}
|
||||||
@findex NULLABLE DBI method
|
@findex NULLABLE DBI method
|
||||||
@item NULLABLE
|
@item NULLABLE
|
||||||
Returns a reference to an array of boolean values; for each element of
|
Returns a reference to an array of values that indicate whether columns may
|
||||||
the array, a value of TRUE indicates that this
|
contain @code{NULL} values.
|
||||||
column may contain @code{NULL} values.
|
The possible values for each array element are 0 or the empty string if the
|
||||||
|
column cannot be @code{NULL}, 1 if it can, and 2 if the column's @code{NULL}
|
||||||
|
status is unknown.
|
||||||
Example:
|
Example:
|
||||||
@example
|
@example
|
||||||
$null_possible = $sth->@{NULLABLE@};
|
$null_possible = $sth->@{NULLABLE@};
|
||||||
|
Reference in New Issue
Block a user