How can Gedae access a database using primitives?

Discussion For purposes of discussion we assume that the database can be accessed from a C program by an API provided with the database. We also assume that the API has the following functions: DataBase openDataBase(char *database_name); void addRecord(DataBase db, char *name, void *data); void *getRecord(DataBase db, char *name); void deleteRecord(DataBase db, char *name); Which are prototyped in include file database. H The openDataBase command gets a DataBase handle to the database named in the argument.

The function addRecord adds a named record to the database by copying size bytes from the pointer "data". The records can be retrieved by name using the getRecord command, and the records can be deleted from the database by name using the deleteRecord command. This is not intended to be an exhaustive list of database functions but it will show how such database access can be achieved in Gedae.

Solution A developer can design a set of database access primitives that add records to ... more.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions