gpt4 book ai didi

php - PDOStatement::bindParam data_type 参数列表

转载 作者:可可西里 更新时间:2023-10-31 23:07:10 25 4
gpt4 key购买 nike

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

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

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

最佳答案

来自文档 here :

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.

关于php - PDOStatement::bindParam data_type 参数列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/316861/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com