mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-19 18:38:55 +00:00

- changed/added samples - all samples use world database now - added url for world db in reference.xml - added output for samples git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@152396 c90b9560-bf6c-de11-be94-00142212c4b1
141 lines
3.8 KiB
XML
141 lines
3.8 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision: 1.5 $ -->
|
|
<refentry id="function.mysqli-insert-id">
|
|
<refnamediv>
|
|
<refname>mysqli_insert_id</refname>
|
|
<refname>mysqli->insert_id</refname>
|
|
<refpurpose>Returns the auto generated id used in the last query</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Description</title>
|
|
<para>Procedural style:</para>
|
|
<methodsynopsis>
|
|
<type>mixed</type><methodname>mysqli_insert_id</methodname>
|
|
<methodparam><type>object</type><parameter>link</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>Object oriented style (property):</para>
|
|
<classsynopsis>
|
|
<ooclass><classname>mysqli</classname></ooclass>
|
|
<fieldsynopsis><type>mixed</type><varname>insert_id</varname></fieldsynopsis>
|
|
</classsynopsis>
|
|
<para>
|
|
The <function>mysqli_insert_id</function> function returns the ID generated
|
|
by a query on a table with a column having the AUTO_INCREMENT attribute. If
|
|
the last query wasn't an INSERT or UPDATE statement or if the modified table
|
|
does not have a column with the AUTO_INCREMENT attribute, this function will
|
|
return zero.
|
|
</para>
|
|
<note>
|
|
<para>
|
|
Performing an INSERT or UPDATE statement using the LAST_INSERT_ID()
|
|
function will also modify the value returned by the
|
|
<function>mysqli_insert_id</function> function.
|
|
</para>
|
|
</note>
|
|
</refsect1>
|
|
<refsect1>
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
The value of the <literal>AUTO_INCREMENT</literal> field that was updated
|
|
by the previous query. Returns zero if there was no previous query on the
|
|
connection or if the query did not update an <literal>AUTO_INCREMENT</literal>
|
|
value.
|
|
</para>
|
|
<note>
|
|
<para>
|
|
If the number is greater than maximal int value, <function>mysqli_insert_id</function>
|
|
will return a string.
|
|
</para>
|
|
</note>
|
|
</refsect1>
|
|
<refsect1>
|
|
<title>Example</title>
|
|
<example>
|
|
<title>Object oriented style</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");
|
|
|
|
/* check connection */
|
|
if (mysqli_connect_errno()) {
|
|
printf("Connect failed: %s\n", mysqli_connect_error());
|
|
exit();
|
|
}
|
|
|
|
$mysqli->query("CREATE TABLE myCity LIKE City");
|
|
|
|
$query = "INSERT INTO myCity VALUES (NULL, 'Stuttgart', 'DEU', 'Stuttgart', 617000)";
|
|
$mysqli->query($query);
|
|
|
|
printf ("New Record has id %d.\n", $mysqli->insert_id);
|
|
|
|
/* drop table */
|
|
$mysqli->query("DROP TABLE myCity");
|
|
|
|
/* close connection */
|
|
$mysqli->close();
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
<example>
|
|
<title>Procedural style</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$link = mysqli_connect("localhost", "my_user", "my_password", "world");
|
|
|
|
/* check connection */
|
|
if (mysqli_connect_errno()) {
|
|
printf("Connect failed: %s\n", mysqli_connect_error());
|
|
exit();
|
|
}
|
|
|
|
mysqli_query($link, "CREATE TABLE myCity LIKE City");
|
|
|
|
$query = "INSERT INTO myCity VALUES (NULL, 'Stuttgart', 'DEU', 'Stuttgart', 617000)";
|
|
mysqli_query($link, $query);
|
|
|
|
printf ("New Record has id %d.\n", mysqli_insert_id($link));
|
|
|
|
/* drop table */
|
|
mysqli_query($link, "DROP TABLE myCity");
|
|
|
|
/* close connection */
|
|
mysqli_close($link);
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
<para>
|
|
The above examples would produce the following output:
|
|
</para>
|
|
<screen>
|
|
<![CDATA[
|
|
New Record has id 1.
|
|
]]>
|
|
</screen>
|
|
</refsect1>
|
|
</refentry>
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"../../../../manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|