Hi
Is it possible to open 2 connection to database (.sdf file's) on windows mobile ?
(frameWork 3.5)
if yes, how can I do it ?
thank's in advance
Hi
Is it possible to open 2 connection to database (.sdf file's) on windows mobile ?
(frameWork 3.5)
if yes, how can I do it ?
thank's in advance
Could be I'm doing something wrong, but for SQL Server CE I keep the same connection open and share it for all of my calls. You could get into issues if you are threading calls, but by in large you are ok.
Big difference between connections in SQL Server and SQL Server CE is that you do NOT get connection pooling in SQL Server CE. When you close a connection in CE, it is gone. And opening connections can be expensive.