xsharp.eu • OleDb connection in XSharp Core app.
Page 1 of 1

OleDb connection in XSharp Core app.

Posted: Sun Jun 16, 2019 6:16 pm
by Juraj
Hi all,

which option is better
create one (global) OleDb connection and use it while the program is running
or
create a new connection for each SQL statement?

Juraj

OleDb connection in XSharp Core app.

Posted: Sun Jun 16, 2019 6:42 pm
by lumberjack
Hi Juraj,
hsc wrote:which option is better
create one (global) OleDb connection and use it while the program is running
or
create a new connection for each SQL statement?
It is choice I believe, but my preference is one connection that is opened and closed as required. I will create a connection per database. I have various systems that need to connect to various databases for independent systems and create statistical reports based on joined data.

I have a SetupDictionary (singleton) that keeps all my "global" settings and it has a Collection<strDbName, oConnection> that I can call when needed.

OleDb connection in XSharp Core app.

Posted: Mon Jun 17, 2019 8:37 am
by MathiasHakansson
Hi Jurai,

Connections are pooled (reused) in .net which means that you don't have to treat them as a precious resource. I would create one connection per data access object (DAO) that the application uses. That means that the number of connections depends on how you have designed your data access. My suggestions is that you make your DAO-objects small so that they only handle one type of data (not necessarily one table) and that they only live while the window and the Business Classes (BC) that uses the data are alive. This design will not limit you in future development like going multi threaded or changing data access technology.

/Mathias