当前位置:  开发笔记 > 编程语言 > 正文

PDOStatement :: bindParam data_type参数列表

如何解决《PDOStatement::bindParamdata_type参数列表》经验,为你挑选了1个好方法。

是否有一个列表描述了您可以使用的所有data_type参数PDOStatement::bindParam()?如果没有,你通常使用什么,以及什么类型的领域?

根据PHP手册:data_type使用PDO :: PARAM_*常量的参数的显式数据类型.

我知道PDO::PARAM_INTPDO::PARAM_STR.我听说过,PDO::PARAM_LOB但我不知道如何以及何时使用它.(约会?)



1> Tom Haigh..:

从这里的文档:

PDO::PARAM_BOOL (integer)
Represents a boolean data type.
PDO::PARAM_NULL (integer)
Represents the SQL NULL data type.
PDO::PARAM_INT (integer)
Represents the SQL INTEGER data type.
PDO::PARAM_STR (integer)
Represents the SQL CHAR, VARCHAR, or other string data type.
PDO::PARAM_LOB (integer)
Represents the SQL large object data type.
PDO::PARAM_STMT (integer)
Represents a recordset type. Not currently supported by any drivers.
PDO::PARAM_INPUT_OUTPUT (integer)
Specifies that the parameter is an INOUT parameter for a stored procedure. You must bitwise-OR this value with an explicit PDO::PARAM_* data type.

推荐阅读
农大军乐团_697
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有