首页
下载
文档
问答社区
视频
捐赠
源代码
AI 助理
赞助商
CRMEB
Apipost
腾讯云
微擎
禅道
51Talk
商业产品
Swoole AI 智能文档翻译器
Swoole-Compiler PHP 代码加密器
CRMEB 新零售社交电商系统
登录
注册
全部
提问
分享
讨论
建议
公告
开发框架
CodeGalaxy
发表新帖
PDO连接池,API must be called in the coroutine in
### 问题描述 sql只要delete就出现API must be called in the coroutine in ### Swoole版本,PHP版本,以及操作系统版本信息 swoole 4.8.7 php 7.4 ### 相关代码 ```php $this->sql = "DELETE FROM {$Table} WHERE ID=1" $pdo = $this->PdoPool->get(); $statement = $pdo->prepare($this->sql); $this->bindValues($statement, $this->values); $statement->execute(); $ret = $statement->rowCount(); $this->PdoPool->put($pdo); ``` ### 你期待的结果是什么?实际看到的错误信息又是什么? PHP Fatal error: Uncaught Swoole\Error: API must be called in the coroutine in @swoole-src/library/core/ConnectionPool .php:63 Stack trace: @swoole-src/library/core/ConnectionPool.php(63): Swoole\Coroutine\Channel->push(Object(Swoole\Database\PDOProxy)) @swoole-src/library/core/ConnectionPool.php(92): Swoole\ConnectionPool->put(Object(Swoole\Database\PDOProxy)) @swoole-src/library/core/ConnectionPool.php(52): Swoole\ConnectionPool->make() ### 已解决 连接池还未启动完成就get了,需要延迟一小段时间后再执行SQL
发布于2年前 · 30 次浏览 · 来自
提问
K
KaiSer
### 问题描述 sql只要delete就出现API must be called in the coroutine in ### Swoole版本,PHP版本,以及操作系统版本信息 swoole 4.8.7 php 7.4 ### 相关代码 ```php $this->sql = "DELETE FROM {$Table} WHERE ID=1" $pdo = $this->PdoPool->get(); $statement = $pdo->prepare($this->sql); $this->bindValues($statement, $this->values); $statement->execute(); $ret = $statement->rowCount(); $this->PdoPool->put($pdo); ``` ### 你期待的结果是什么?实际看到的错误信息又是什么? PHP Fatal error: Uncaught Swoole\Error: API must be called in the coroutine in @swoole-src/library/core/ConnectionPool .php:63 Stack trace: @swoole-src/library/core/ConnectionPool.php(63): Swoole\Coroutine\Channel->push(Object(Swoole\Database\PDOProxy)) @swoole-src/library/core/ConnectionPool.php(92): Swoole\ConnectionPool->put(Object(Swoole\Database\PDOProxy)) @swoole-src/library/core/ConnectionPool.php(52): Swoole\ConnectionPool->make() ### 已解决 连接池还未启动完成就get了,需要延迟一小段时间后再执行SQL
赞
0
分享
收藏
提问
分享
讨论
建议
公告
开发框架
CodeGalaxy
评论
还没有评论!
微信公众号
热门内容
暂无回复的问答
- CodeGalaxy K3s 轻量集群节点之间如何实现负载均衡
- 关于openssl CURL WARNING swSSL_connect: SSL_connect(fd=69) failed. Error: error:141A318A:SSL routines:tls_process_ske_dhe:dh key too small[1|394]
- 多个模型如何进行事务异常回退?
- websocket开启wss报错
- 协程tcp服务器如何使用多进程?recv()方法接收信息,打印出来的pid一直是同一个。没用使用到多进程啊。