PDO rowCount() 还是 exec()?
在我看来, rowCount()
< /a> 和 exec()
返回受最后一个 SQL 语句影响的行数。
为什么要把重复的东西放在那里?
It seems to me that both rowCount()
and exec()
Returns the number of rows affected by the last SQL statement .
Why keep the duplicate stuff there?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
他们不是重复的,他们在不同的情况下扮演不同的角色。
它们在这方面是不同的
如果您使用的是execute(),那么rowCount就发挥了它的作用
,而当您使用exec时,不需要
rowCount()
They are not duplicate they have different-2 roles to play at different situations.
They are different in this way
If you are using execute() then rowCount come into it's role
And when you are using exec no need to
rowCount()