document MYSQLI_DATA_TRUNCATED

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@185951 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Nuno Lopes 2005-05-07 11:02:30 +00:00
parent b5fd371b96
commit 4dfd372f93
2 changed files with 15 additions and 3 deletions

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.7 $ -->
<!-- $Revision: 1.8 $ -->
<section id='mysqli.constants'>
&reftitle.constants;
@ -438,6 +438,13 @@
</entry>
<entry>No more data available for bind variable</entry>
</row>
<row>
<entry>
<constant id='constantmysqli-data-truncated'>MYSQLI_DATA_TRUNCATED</constant>
(<link linkend='language.types.integer'>integer</link>)
</entry>
<entry>Data truncation occurred. Available since PHP 5.1.0.</entry>
</row>
</tbody>
</tgroup>
</table>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.7 $ -->
<!-- $Revision: 1.8 $ -->
<refentry id="function.mysqli-stmt-fetch">
<refnamediv>
<refname>mysqli_stmt_fetch</refname>
@ -55,9 +55,14 @@
<entry>&false;</entry>
<entry>Error occured</entry>
</row>
<row>
<entry>MYSQLI_DATA_TRUNCATED</entry>
<entry>Data truncation occurred (since PHP 5.1.0)</entry>
</row>
<row>
<entry><literal>&null;</literal></entry>
<entry>No more rows/data exists</entry>
<entry>No more rows/data exists (or data truncation occurred, in PHP
5.0.x)</entry>
</row>
</tbody>
</tgroup>