I am working on a name record application and the information is stored in a SQLite database. All columns in the database are TEXT types, except for the date of birth column
Use nullabe DateTime format instead of DateTime ("DateTime?") - don't use string.
example:
public DateTime? mydate;
and then:
DGview.Rows.Add(mydate.HasValue ? mydate : null);