HelpDatabase Reference › MeAnd23W_Kit

MeAnd23W_Kit Table

The MeAnd23W_Kit table is internal app data used by the DNAGedcom Client when working with 23andMe. It records the account/kit that was logged in to gather 23andMe data, along with a created date and a sync flag. It does not hold any DNA match data — matches live in the MeAnd23W_Relatives table.

Internal app data, not match data. This table is part of the application’s own bookkeeping rather than something you would analyze for genealogy. In current versions of the client it is treated as a legacy “old concept” table: a row is written when you log in to 23andMe, but the data it holds is not used for analysis.

Column Reference

ColumnTypeDescription
Idint (PK)Auto-incrementing primary key
loginUsernamestringThe DNAGedcom username under which this row was stored
kitnumberstringKit number. Not populated in current versions of the client.
usernamestringThe 23andMe account username used to log in
passwordstringInternal credential storage field. In current versions of the client this is written as an empty string when a row is created.
created_datestringDate the row was created (MM/dd/yyyy)
syncstringSync status flag (set to “0” when a new row is inserted)

How It’s Populated

A row is added during the 23andMe login step. The client checks whether a matching row already exists (by username and password) and, if not, inserts a new one with loginUsername set to the current DNAGedcom user, created_date set to today, and sync set to “0”. In current code the password and kitnumber fields are not filled in — only username and created_date carry real values.

Related Tables

  • MeAnd23W_Relatives — the primary 23andMe match table (your DNA relatives).
  • MeAnd23W_Profiles — 23andMe profiles associated with the account.
  • MeAnd23W_Shares — 23andMe sharing/dataset records.