c# - Is it possible to open 2 connection on Windows mobile (3.5)? -
Is it possible to open 2 connections from the database (.sdf file) on Windows Mobile?
(Framework 3.5)
If yes, how can I do this?
Thanks in advance
Maybe I'm doing something wrong, But for this SQL Server CE keeps the same connection open and I share it for all my calls. If you are calling to make a call, you may get involved in problems, but at large you are fine.
The biggest difference between connection between SQL Server and SQL Server CE is that you do not pooling connections in SQL Server CE. When you close a connection in CE, it goes and the opening connections can be expensive.
Comments
Post a Comment