< Ada Programming < Libraries < Database
![](../../../../I/Ada_Mascot_with_slogan.svg.png.webp)
Ada. Time-tested, safe and secure.
Library functions
David Botton created GNATCOM project to help Ada interoperate with Windows COM Object. The GWindows project is based on GNATCOM. It is used to create Windows Graphics User Interface.
The database package is a subset of the GWindows project. It is very easy and useful.
Library links
- Author
- David Botton
- Homepage
- https://sourceforge.net/projects/gnavi/
- Project Info
- GWindows
- Library Document
- http://www.gnavi.org/gwindows/ref/gwindows-databases.html
- SVN Archive
- https://svn.code.sf.net/p/gnavi/code/
- Download
- https://sourceforge.net/projects/gnavi/
Sample code
with
Gnatcom.Initialize;with
Gnatcom.Types;with
Gnatcom.Variant;with
Gwindows.Databases;use
Gwindows.Databases;with
Ada.Text_IO;use
Ada.Text_IO;with
Ada.Strings;with
Ada.Strings.Fixed;with
Ada.Exceptions;with
System;procedure
Testis
Connection : Database_Type; Recordset : Recordset_Type; customer : Gnatcom.Types.Variant;begin
Gnatcom.Initialize.Initialize_Com; -- make connection Open (Connection, "DSN=Northwind","your ID","your password"); -- make Recordset(ResultSet) Open (Recordset, Connection, "SELECT * from Orders", Dynamic, Optimistic); -- start to process your business solutionwhile
not
Eof (Recordset)loop
customer := Field_Value(Recordset,"customerId"); Process (customer); -- your customer procedure Move_Next (Recordset);end
loop
; -- release database resource Gwindows.Databases.Close(Recordset);end
Test;
See also
Wikibook
Ada Reference Manual
—none apply --
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.