/*

Datenbank-Oberfläche

Deklarationen und Implementierungen von Datenbankfunktionen

@author DR

*/


// Eigene Datenbank-Funktionen

#include "datenbank.h"			// Im selben Verzeichnis


// Bibliotheken

#include <iostream.h>		// Im Bibliothekspfad


int main()
{

	initDatabase();

	storeItem(19, "Rainer");	// Aufruf aus Datenbank-Bibliothek
	storeItem(20, "David");
	storeItem(21, "Thomas");

	cout << "21: " << findItem(21) << endl;
	cout << "20: " << findItem(20) << endl;
	cout << "19: " << findItem(19) << endl;

	destroyDatabase();

	return 0;
}
