Is it acceptable to keep a db connection open for the life of the page?

前端 未结 10 2013
执念已碎
执念已碎 2021-01-18 07:11

Everybody knows that you should close a connection immediately after you finish using it.

Due to a flaw in my domain object model design, I\'ve had to leave the conn

10条回答
  •  旧时难觅i
    2021-01-18 07:27

    You should certainly keep the connection open across the lifetime of the page, if you're doing multiple queries during it. Generally, one re-uses connections across many pages, actually.

提交回复
热议问题