From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,ac193220dd94f402,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-01-02 09:25:02 PST Path: supernews.google.com!sn-xit-02!supernews.com!news.tele.dk!134.222.94.5!npeer.kpnqwest.net!news.edf.fr!not-for-mail From: OPERA Newsgroups: comp.lang.ada Subject: Ada and Database Date: Tue, 02 Jan 2001 18:14:51 +0100 Organization: Electricite de France Message-ID: <3A520C8A.4BC39537@edf.fr> NNTP-Posting-Host: cnn00007.cnen.de.edf.fr Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: clnews.edf.fr 978455692 4134 144.165.69.7 (2 Jan 2001 17:14:52 GMT) X-Complaints-To: newsadm@news.edf.fr NNTP-Posting-Date: 2 Jan 2001 17:14:52 GMT X-Mailer: Mozilla 4.5 [fr] (WinNT; I) X-Accept-Language: fr Xref: supernews.google.com comp.lang.ada:3566 Date: 2001-01-02T17:14:52+00:00 List-Id: Happy new year ! I have a some "naive" questions regarding Ada and data bases (in SQL) : 1 - How can I implement a SQL data base in an Ada program developped with GNAT ? I mean is there some free package implementing a data base engine in Ada that can directly understand a request in SQL something like : SQL_request(" SELECT ... FROM ...."); 2 - More generaly, but tell me if I'm wrong, I suppose that it would be usefull to extend the Ada langage with some data base facilities, a bit like what has been done for tasking : a clear syntax directly understandable at upper level and consistent with the rest of the langage, and an implementation depending on what exists on the target : if a good database engine already exists, then simply creates a binding (like the binding bewteen Ada tasks and some OS thread) or if nothing exists use the one provided by the compiler (like GNAT under Ms-DOS)... Thanks for your response.