PHP mysqli_stmt_errno MySQLi 函数

  • 定义和用法

    mysqli_stmt_errno - 返回最近的语句调用的错误代码
  • 版本支持

    PHP4 PHP5 PHP7
    不支持 支持 支持
  • 语法

    mysqli_stmt_errno ( mysqli_stmt $stmt )
    
    返回可能成功或失败的最近调用的语句函数的错误代码。 客户端错误消息编号在MySQL errmsg.h头文件中列出,服务器错误消息编号在mysqld_error.h中列出。 在MySQL源代码发行版中,您可以在文件Docs/ mysqld_error.txt中找到错误消息和错误编号的完整列表。
  • 参数

    参数 必需的 描述
    stmt mysqli_stmt_init() 返回的 statement 标识。
  • 返回值

    错误代码值。 零表示没有错误发生。
  • 示例

    <?php
    /* Open a connection */
    $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 myCountry LIKE Country");
    mysqli_query($link, "INSERT INTO myCountry SELECT * FROM Country");
    
    
    $query = "SELECT Name, Code FROM myCountry ORDER BY Name";
    if ($stmt = mysqli_prepare($link, $query)) {
    
       /* drop table */
       mysqli_query($link, "DROP TABLE myCountry");
    
       /* execute query */
       mysqli_stmt_execute($stmt);
    
       printf("Error: %d.\n", mysqli_stmt_errno($stmt));
    
       /* close statement */
       mysqli_stmt_close($stmt);
    }
    
    /* close connection */
    mysqli_close($link);
    
  • 相关函数

    mysqli_stmt_error() - 返回最后一条语句错误的字符串描述
    mysqli_stmt_sqlstate() - 从先前的语句操作返回SQLSTATE错误