Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1923169
  • 博文数量: 45
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 515
  • 用 户 组: 普通用户
  • 注册时间: 2019-08-05 16:22
文章分类

全部博文(45)

文章存档

2020年(4)

2019年(41)

我的朋友

分类: PHP

2019-10-24 09:24:59

定义和用法

mysqli_stmt_bind_result - 将变量绑定到准备好的语句以存储结果

语法:

  1. mysqli_stmt_bind_result ( mysqli_stmt $stmt , mixed &$var1 [, mixed &$... ] )
将结果集中的列绑定到变量。 当调用mysqli_stmt_fetch()来获取数据时,MySQL客户端/服务器协议将绑定列的数据放入指定的变量var1,...。

参数

参数 必需的 描述
stmt 由  返回的 statement 标识。
var1 要绑定的变量。
... 更多变量

实例

  1. $link = mysqli_connect("localhost", "my_user", "my_password", "world");
  2. /* check connection */
  3. if (!$link) {
  4.     printf("Connect failed: %s\n", mysqli_connect_error());
  5.     exit();
  6. }
  7. /* prepare statement */
  8. if ($stmt = mysqli_prepare($link, "SELECT Code, Name FROM Country ORDER BY Name LIMIT 5")) {
  9.     mysqli_stmt_execute($stmt);
  10.     /* bind variables to prepared statement */
  11.     mysqli_stmt_bind_result($stmt, $col1, $col2);
  12.     /* fetch values */
  13.     while (mysqli_stmt_fetch($stmt)) {
  14.         printf("%s %s\n", $col1, $col2);
  15.     }
  16.     /* close statement */
  17.     mysqli_stmt_close($stmt);
  18. }
  19. /* close connection */
  20. mysqli_close($link);

相关函数

 - 从准备好的语句获取结果集
 - 将变量绑定到准备好的语句作为参数
mysqli_stmt_execute() - 执行准备好的查询
- 从准备好的语句中获取结果到绑定变量中
 - 准备执行一个SQL语句
 - 准备要执行的SQL语句
 - 初始化一条语句并返回一个用于mysqli_stmt_prepare(调用)的对象


阅读(194372) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~