如何在C#或VB.NET中使用SqLite连接池?

问题描述 投票:0回答:1

SqLite 的连接字符串可以包含使用连接池的选项,例如(伪代码)

Dim connectionString = "Data Source=" + Path + ";" +
                                    "Version=3;" +
                                    "Pooling=True;" +
                                    "Max Pool Size=100;"

我希望有一些额外的类或工厂方法来使用连接池,例如

dim connectionPool = new SqLiteConnectionPool(connectionString)

dim firstConnection = connectionPool.getConnection()
...
firstConnection.dispose()

...
dim secondConnection = connectionPool.getConnection()

但是,我找不到这样的课程。

=> 如何将连接归还给连接池

=> 如何重用之前已返回到池中的连接

https://system.data.sqlite.org/index.html/doc/trunk/www/index.wiki 上搜索“pool”没有给出任何结果。

a) 我是否必须多次调用连接的构造函数?

dim firstConnection = new SqLiteConnection(connectionString)
...
firstConnection.dispose()


dim secondConnection = new SqLiteConnection(connectionString)

多次传递连接字符串对我来说似乎并不直观。

b)或者我会只创建一次连接并在关闭/处置后以某种方式唤醒它吗?

dim connection = new SqLiteConnection(connectionString))
using connection 
 ...
end using 

connection.open()
using connection
 ...
end using 
c# sqlite connection-pooling
1个回答
8
投票

SQLite 驱动程序将为您管理池,但是,在使用连接时有一个很多人没有意识到的关键点。

开门晚,关门早

如果连接处于打开状态,则无法将其返回到池中。 因此,您可以创建连接、准备语句,但是只能在执行查询之前立即打开连接。

© www.soinside.com 2019 - 2024. All rights reserved.