DB/DeclinedWordCases: Difference between revisions
Jump to navigation
Jump to search
m (Marlamin moved page DeclinedWordCases.dbc to DB/DeclinedWordCases) |
mNo edit summary |
||
Line 28: | Line 28: | ||
struct DeclinedWordCasesRec { | struct DeclinedWordCasesRec { | ||
uint32_t m_ID; | uint32_t m_ID; | ||
{{Template:Type/foreign_key|table=DeclinedWord}} m_declinedWordID; | |||
uint32_t m_caseIndex; | uint32_t m_caseIndex; | ||
stringref m_declinedWord; | stringref m_declinedWord; |
Revision as of 16:40, 14 February 2016
You know declension, or?
- homo (nominative) "[the] man" [as a subject] (e.g., homo ibi stat the man is standing there)
- hominis (genitive) "of [the] man" [as a possessor](e.g., nomen hominis est Claudius the man's name is Claudius)
- hominī (dative) "to [the] man" [as an indirect object] (e.g., homini donum dedi I gave a present to the man; homo homini lupus est Man is a wolf to man.)
- hominem (accusative) "[the] man" [as a direct object] (e.g., ad hominem toward the man, in the sense of argument directed personally; hominem vidi I saw the man)
- homine (ablative) "[the] man" [in various uses not covered by the above] (e.g., sum altior homine I am taller than the man).
Header Info
Records....................55 Fields......................4 Record Size................16 String Block Size........2408
Structure
Column | Field | Type | Notes |
---|---|---|---|
1 | ID | Integer | |
2 | Word | iRefID | this is the declension of this word |
3 | Case | Integer | from 1 to 5. {nominative, genitive, dative, accusative, ablative} |
4 | DeclinedWord | String | declined word |
6.0.1.18179
struct DeclinedWordCasesRec { uint32_t m_ID; foreign_keyⁱ<uint32_t, &DeclinedWordRec::m_ID> m_declinedWordID; uint32_t m_caseIndex; stringref m_declinedWord; };