PHP PDOStatement::setAttribute讲解
程序员文章站
2023-10-30 14:31:04
pdostatement::setattribute
pdostatement::setattribute — 设置一个语句属性(php 5 >= 5.1.0, p...
pdostatement::setattribute
pdostatement::setattribute — 设置一个语句属性(php 5 >= 5.1.0, pecl pdo >= 0.2.0)
说明
语法
bool pdostatement::setattribute ( int $attribute , mixed $value )
给语句设置一个属性。当前,没有通用的属性可以设置,只有驱动特定的属性:
_pdo::attr_cursorname (firebird 和 odbc 特性): 为 update ... where current of 设置游标名称。
返回值
成功时返回 true, 或者在失败时返回 false。
代码示例
<?php $database = "adventureworks"; $server = "(local)"; $conn = new pdo( "sqlsrv:server=$server ; database = $database", "", "", array('multipleactiveresultsets'=>false ) ); $stmt = $conn->prepare('select * from person.contacttype'); echo $stmt->getattribute( constant( "pdo::attr_cursor" ) ); echo "\n"; $stmt->setattribute(pdo::sqlsrv_attr_query_timeout, 2); echo $stmt->getattribute( constant( "pdo::sqlsrv_attr_query_timeout" ) ); ?>
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接