[sqlite] How do non-SQLite DBMS communicate?

2015-04-24 Thread Drago, William @ CSG - NARDA-MITEQ
-users-bounces at mailinglists.sqlite.org [mailto:sqlite- > users-bounces at mailinglists.sqlite.org] On Behalf Of James K. Lowden > Sent: Thursday, April 23, 2015 1:57 AM > To: sqlite-users at mailinglists.sqlite.org > Subject: Re: [sqlite] How do non-SQLite DBMS communicate? > > O

[sqlite] How do non-SQLite DBMS communicate?

2015-04-23 Thread James K. Lowden
On Wed, 22 Apr 2015 22:28:57 + "Drago, William @ CSG - NARDA-MITEQ" wrote: > When using SQLite the application program accesses the SQLite DBMS > via its .dll file. The DLL is a function-call library. A function is a named bit of code. To "call a function" is to jump to that named bit of

[sqlite] How do non-SQLite DBMS communicate?

2015-04-23 Thread Howard Chu
Drago, William @ CSG - NARDA-MITEQ wrote: > All, > > I'm not sure how to ask this question. > > When using SQLite the application program accesses the SQLite DBMS > via its .dll file. When using something like Oracle Express (a local DBMS) the application program is communicating with Oracle

[sqlite] How do non-SQLite DBMS communicate?

2015-04-23 Thread Simon Slavin
On 22 Apr 2015, at 11:28pm, Drago, William @ CSG - NARDA-MITEQ wrote: > So, SQLite databases are accessed via .dll where as other local databases run > a server that is accessed via ??? Most database systems have client/server architecture. There is somewhere a server. The only program

[sqlite] How do non-SQLite DBMS communicate?

2015-04-22 Thread Drago, William @ CSG - NARDA-MITEQ
All, I'm not sure how to ask this question. When using SQLite the application program accesses the SQLite DBMS via its .dll file. When using something like Oracle Express (a local DBMS) the application program is communicating with Oracle Express via some sort of network protocol even though