Open main menu

Gramps β

Changes

Addon:Generic DB Access lib

1,420 bytes added, 23:13, 31 October 2025
meaningless image
{{Third-party pluginaddon}}
{{man warn|Experimental library|Please only use on a copy of your Family Tree}}
The {{man label|Generic DB Access lib}} (AKA libaccess) is an experimental library that provides generic access to the database and the [https://gramps-project.org/docs/gen/gen_lib.html#module-gramps.gen.lib gen.lib interface](AKA The core library of Gramps objects ). It was designed to simplify the manner in which developers interact with Gramps.
{{stub}}
== Usage ==
=== Example ===
Consider the problem of finding out how many people were born in March. Basically, we need to go through the database, get the reference (if one) to the birth event, look up the birth event, if found, get the date from it, get the month and compare it. That might look like this:
 
<pre>
count = 0
for p in db.iter_people():
birth_ref = p.get_birth_ref()
if birth_ref:
event = db.get_event_from_handle(birth_ref.ref)
if event:
date = event.get_date_object()
if date.get_month() == 3:
count += 1
</pre>
 
This example is not unusual; you’d have to do something like this whatever it is that you are doing. And this is a simple example. It can get much more complicated. But even in this “simple” example, you have to know a lot about the gen.lib objects that make up Gramps (things like Person, Event, and Date) but you also need to know the interface to the database (things like iter_people, get_event_from_handle) and how things are linked together (handles and refs).
 
Here is how you would solve the above using this experimental Gramps addon:
* [https://gramps-project.org/blog/2010/01/alternative-interfaces/ Alternative Interfaces], Date: January 23rd, 2010, by Doug Blank, who introduced {{man label|libaccess}} in Gramps 3.2.
* Source code for Gramps master: https://github.com/gramps-project/addons-source/tree/master/libaccess
* [https://sourceforge.net/p/gramps/mailman/message/30213240/ GEPS : single-line sql-like filter field (libaccess based ?)], Dec 11, 2012, ''...I don't plan on developing that particular prototype[libaccess] any further,...''' Doug Blank
* [[GEPS 017: Flexible gen.lib Interface]] - Proposal was withdrawn as after building a prototype, it was found to be too slow for general use.
* [[Addon:Isotammi_addons#SuperTool]] - general purpose scripting tool that can be used to do "ad-hoc" queries against a Gramps family tree/database.
 
[[Category:Plugins]]
[[Category:Developers/General]]
[[Category:Reports]]
15,091
edits