Ok guys, short update on tracking db. I attach a couple of shots of the home-cooked db in FileMaker on Mac.
First, an overview of what the main page looks like. Serial number is pretty clear, just a running number. As I keep orchids in several places, a location field is needed. Genus species is self evident, I don't do hybrids, so no need for that. Taxonomic details such as authority etc. are not necessary for my purposes. Source, date obtained, price just for interest. Remarks for anything else. Thumbnail image helps me jog my memory. Those are all my own pictures.
The Flowering section can take multiple entries (a so-called portal) Some cells are not filled in, as I was not sufficiently consistent previously, so db will help me with that. Flowering duration is calculated from the two dates.
Repot, the same, for bark mounted species, that does not really apply.
Culture info is from various sources, again through a portal, and the summary with highs and lows is at the bottom. That last read-out is done with a script.
Those pages are printed out, and form a log-book, that I can quickly annotate by hand, then transfer info to db. An alphabetic index is also included, easy to whip up on a db.
I have not done any super nice layout; it's just for me.
Below a page of labels, for the Gempler's laser printer labels. I like small labels, so there are 4 mini labels printed on each Gempler, and then cut manually to size. The round symbol is where the hole for the wire goes. For stick in soil labels, the hole is cut off, and the end is cut to a taper.
There is a second layout for medium size labels, just a notch larger in size.
For the tech geeks among you, the relationship graph of the four tables.
Orchids main is the main table. Match-fields to port data from the other three tables into the portals of Main are either serial number for flower and potting info (this is specific for each individual plant), or Genus_species for culture info, as this is only specific for each species. To ensure consistent spelling of Genus_species, the available values in Culture_info is a dynamically generated pull-down list from the Genus_species in Orchids-Main.
For the very tech geeks, below the culture info scripts. The trickiest part is to pull in verbal qualitative lighting info, if no numerical foot-candle lighting information is available. So use an If IsEmpty function, and as the multiple verbal descriptions are separated by default by a paragraph mark, that is substituted with a comma to keep everything on one line.
Minimum Temp script: Min ( Culture_Info::LoTemp )
Similar for the other variables.
TextStyleAdd ( "Temp: " ; Bold ) & MinTemp & "–" & MaxTemp & " F. " & TextStyleAdd ( "Light: " ; Bold ) & If ( IsEmpty ( MinLite ) ; Substitute ( List (Culture_Info::QualitativeLight) ;"¶" ; ", " ) & "." ; MinLite & "–" & MaxLite & " fc." )
Bottom line, cooking ones own tracking db is not that difficult, and it is customized to my needs. I welcome comments and suggestions.