class Concession - jcobban/Genealogy GitHub Wiki
class Concession
Up: Object-Oriented Access to Database Records
This class is derived from Record to implement the logical interface to a record in the Concessionss table (Concessions). Each entry in this table contains the description of a Concession.
Fields
This record presents the following fields:
| name | description | synonyms |
|---|---|---|
| 'domain' | Domain ID, see class Domain | |
| 'county' | county ID, see class County | |
| 'township' | township name | |
| 'conid' | concession identifier | |
| 'order' | order within township | 'conorder' |
| 'firstlot' | first lot number | |
| 'lastlot' | last lot number | |
| 'latitude' | center latitude of lot 1 | |
| 'longitude' | center longitude of lot 1 | |
| 'latbylot' | diff latitude for lot n+1 | |
| 'longbylot' | diff longitude for lot n+1 |
Table of Contents
- new Concession($parms)
- $Concession->getName()
- $Concession->get($fieldname)
- $Concession->set($fieldname, $value)
- $Concession->save($xml)
- $Concession->delete($xml)
Next: new Concession($parms)