Hi All,
I am writing an Inventory Informatics Manager and I need some help processing data contained in my Access Database.



Currently my main table in my database is set up as follows:

Sample Derivitive Sample 1 Derivitive Sample 2
Z A B
B A C
C F D


This means that:
Sample Z was created by using Samples A and B
Sample B was created by using Samples A and C
Sample C was created by using Samples F and D.


I want to turn this data (contained in my access database) into a block diagram. - See http://blockdiag.com/en/blockdiag/de...diagram-source

SOURCE:
{
A -> Z;
B -> Z;
A -> B;
C -> B;
F -> C;
D -> C
}


RESULT:
Attachment 5944

The issue is that I do not know the best way to have the python based Block Diagram application retrieve formated data from my access database.
Ideally the results would be displayed from within access - as an image.


I would greatly appreciate some advice.
Thank you very much,
Justin