通过vb.net处理PostgreSQL连接池

时间:2014-06-11 05:30:53

标签: vb.net postgresql connection-pooling connection

例如,

在我的vb.net应用程序中,我创建了两个名为FormAFormB的表单。完成后,FormA的加载dbMonitor显示{{1} }并且在Connection is returned to pool. Pool has 4 connection(s) Formb的情况下显示dbMonitor。当我一次使用两个表单时,总连接数将为Connection is returned to pool. Pool has 5 connection(s)

  • 我需要在表单加载后清除所有连接,如果是,哪种方法是安全的

  • 在通过网络计算机使用我的应用程序时有时会遇到9问题。

max connection打开连接的代码位于

之下
  • 我为连接创建了VB.NET

    module
    • 我在表单加载中使用 Imports Devart.Data.PostgreSql Module Myconnstrection Public Myconnstr As New PgSqlConnection("Server=" & gstrServerName & ";Port=" & gstrPort & ";Database=" & gStrDBName & ";User ID=" & gstrUserName & ";Password=" & gPassword) End Module 或者需要与数据库建立连接
  

     

Dim adapter As PgSqlDataAdapter = New PgSqlDataAdapter(strSql,   MyConnstr)myconnstr.open()

     

'做我的工作

     

捕获

     

最后

     

myconnstr.close()

     

结束尝试

MyConnstr

0 个答案:

没有答案