DB/DeclinedWordCases: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
Line 5: Line 5:
*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)
*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).
*homine (ablative) "[the] man" [in various uses not covered by the above] (e.g., sum altior homine I am taller than the man).


{{Template:Sandbox/VersionRange|min_expansionlevel=2}}
{{Template:Sandbox/VersionRange|min_expansionlevel=2}}


==Structure==
==unknown probably bc, 6.0.1.18179==
{| style="width: 100%;"
! style="width: 60px;" | Column !! style="width: 120px;" | Field !! style="width: 100px;" | Type !! Notes
|-
| 1 || ID || Integer ||
|- style="background:#F0F8FF;"
| 2 || [[DeclinedWord.dbc|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 {
  struct DeclinedWordCasesRec {
   uint32_t m_ID;
   uint32_t m_ID;
   {{Template:Type/foreign_key|table=DeclinedWord}} m_declinedWordID;
   {{Type/foreign_key|table=DeclinedWord}} m_declinedWordID;
   uint32_t m_caseIndex;
   uint32_t m_caseIndex;                                                 // from 1 to 5. {nominative, genitive, dative, accusative, ablative}
   {{Template:Type|stringref}} m_declinedWord;
   {{Type|stringref}} m_declinedWord;
  };
  };
[[Category:DBC]][[Category:DBC_WotLK]]
[[Category:DBC]][[Category:DBC_WotLK]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Latest revision as of 17:39, 1 January 2020

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).

≥ BC

unknown probably bc, 6.0.1.18179

struct DeclinedWordCasesRec {
  uint32_t m_ID;
  foreign_key<uint32_t, &DeclinedWordRec::m_ID> m_declinedWordID;
  uint32_t m_caseIndex;                                                  // from 1 to 5. {nominative, genitive, dative, accusative, ablative} 
  stringref m_declinedWord;
};