DateTime dLaunch = oRs.GetDateTime(oRs.GetOrdinal("launch_date"));
or use this function to make it easier to read
public static DateTime GetDateTime(OleDbDataReader reader,string colName) {
return reader.GetDateTime(reader.GetOrdinal(colName));
}
DateTime dLaunch = GetDateTime(oRs,"launch_date");