首先对于ADO.NET代码要先保存起来,当下一次需要打开连接地时候就将先前地Connection 交给下一个连接。这就是ADO.NET代码的编制,制定ADO.NET代码的相关技巧。。
如果您地项目是ASP.NET/WebService 我们会建议您运用ADO.NET代码因为这个功能可以帮助您减少由于频繁创建连接带来地巨大系统开销。
如果您地系统是一个C/S模型结构,我们会不建议您运用ADO.NET代码,这是由于一般而言,在C/S这样地模型中,每一个用户均为运用自己地用户名密码去连接后台数据库,运用地均为不同地Connection String,根本不会出现频繁出现打开/关闭数据库连接地问题。#t#
实际上在ADO.NET代码模型中,您可以一直使一个Connection维护open地关闭,而不Close,这样更可以提高您系统地性能,不会由于Connection Pool地额外检查而带来系统资源地消耗,相应情况下也不必担心一直打开地Connection长时间地占用了连接,导致其他地连接无法从ADO.NET代码及时获取到。(因为您根本就不需要运用到connection pool)
另外地一点备住:
- Enlist (True)
- When true, the pooler automatically enlists the connection in the current transaction context of the creation thread if a transaction context exists.
- Max Pool Size (100)
- The maximum number of connections allowed in the pool.
- Min Pool Size (0)
- The minimum number of connections maintained in the pool.
- ConnectionReset (True)
- Gets or sets a Boolean value that indicates whether the connection is reset when drawn from the connection pool.
- The value of the ConnectionReset property or true if no value has been supplied.
- This property corresponds to the "Connection Reset" key within the connection string.