原文连接
http://www.delphifeeds.com/go/s/74909 google翻译并整理 当开发人员开始创建Delphi的DataSnap应用时很常见的数据库连接定义方式是每个数据模块建立一个连接。这样做将产生大量的数据库连接,并产生很多问题。 DelphiXe,提供了Session管理,更容易实现控制客户端连到服务器的数据库连接。客户端应用程序bu不会知道这些,服务器将完成所有的事情。 当我们创建一个DataSnap服务器时,最好的做法就是定义一个服务器容器(数据模块),其中包含DataSnap服务器组件和注册所有的服务器应用程序所需的类。在这个容器中,我们将定义一个负责处理服务器的数据库连接的方法。 作为一个例子,我已经实现了服务器容器上的一个的getConnection方法。这个方法负责 为连接池分配连接,这将有每一个客户端连接列表寻找,连接池里包含有每个客户端的连接。 private
当服务器收到来自新的客户端的连接到数据库的请求时,getConnection将创建一个新的连接并添加到 连接池清单。如果客户已经有了一个连接相关联,getConnection则只返回的一个SqlConnection实例 。连接池使用线程ID来控制每个客户端的唯一连接。如果您使用的DataSnap2010,你必须用GetThreadSession方法来实现这个功能。 function
TServerContainer1.GetConnection: TSQLConnection; if
ListofConnection.ContainsKey(TDSSessionManager.GetThreadSession.Id) then
ListofConnection.Add(TDSSessionManager.GetThreadSession.Id, dbconn); end;
If you are using the VCL Data components (TSQLQuery, TSQLStoredProc, etc…) on your Server DataModules, the onCreate event is a good place to associate the DataSets with the connection, using the following code.
procedure
TServerContainer1.SetConnection(Conn: TSqlConnection); for i := 0 to ComponentCount - 1
do
if GetConnection <> nil
then |