DB/DeclinedWordCases: Difference between revisions

From wowdev
Jump to navigation Jump to search
(New page: == About == == Header Info == Records....................55 Fields......................4 Record Size................16 String Block Size........2408 ==Structure== {| style="width:...)
 
mNo edit summary
 
(9 intermediate revisions by 5 users not shown)
Line 1: Line 1:
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).


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


 
==unknown probably bc, 6.0.1.18179==
== Header Info ==
  struct DeclinedWordCasesRec {
Records....................55
  uint32_t m_ID;
  Fields......................4
  {{Type/foreign_key|table=DeclinedWord}} m_declinedWordID;
Record Size................16
  uint32_t m_caseIndex;                                                 // from 1 to 5. {nominative, genitive, dative, accusative, ablative}
String Block Size........2408
  {{Type|stringref}} m_declinedWord;
 
};
==Structure==
[[Category:DBC]][[Category:DBC_WotLK]]
{| style="width: 100%;"
[[Category:DBC_WoD]][[Category:6.0.1.18179]]
! style="width: 60px;" | Column !! style="width: 120px;" | Field !! style="width: 100px;" | Type !! Notes
|-
| 1 || ID || Integer ||
|-
| 2 || Unknown || Integer ||
|-
| 3 || Unknown || Integer ||
|- class="alt"
| 2 || [[Unknown]] || String ||
|}
 
[[Category:DBC]]

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;
};