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

当前客户端上没有定义池 - knex.js + node + postgresql

如何解决《当前客户端上没有定义池-knex.js+node+postgresql》经验,为你挑选了0个好方法。

我正在node.js中构建一个应用程序并使用knex ORM.我在运行迁移时遇到问题 - 我一直收到错误消息:

Error: There is no pool defined on the current client

这是我的连接配置:

module.exports = {
knex: require('knex')({
    client: 'pg',
    connection: {
        host: env.DB_HOST,
        user: env.DB_USER,
        password: env.DB_USER_PASSWORD,
        database: env.DB_NAME
    },
    pool: {
        min: 0,
        max: 7
    },
    searchPath: env.DB_SEARCHPATH
  })
};

有人可以帮忙吗?

提前致谢!

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