PDOStatement::bindParam data_type 参数列表
是否有一个列表描述您可以在 PDOStatement::bindParam() 中使用的所有 data_type 参数? 如果没有,您通常使用什么以及用于什么类型的字段?
根据 PHP 手册:data_type 使用 PDO::PARAM_* 常量的参数的显式数据类型。
我了解 PDO::PARAM_INT
和 PDO::PARAM_STR
。 我听说过 PDO::PARAM_LOB
但我不确定如何以及何时使用它。 (约会?)
Is there a list describing all of the data_type parameters you can use in PDOStatement::bindParam()
? If none, what do you commonly use, and for what type of field ?
According to PHP manual: data_type Explicit data type for the parameter using the PDO::PARAM_* constants.
I know about the PDO::PARAM_INT
and PDO::PARAM_STR
. I've heard of PDO::PARAM_LOB
but I wasn't sure how and when to use that, though. (for date ?)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从文档此处:
From the documentation here: