M
Michael Henry
I'm trying to make a table through ADOX. The problem that
I am running into is that I have created a column of type
adDate. I would like to allow null entries for this
column. However when I try to use the properties method
to set the "Nullable" property I keep getting a run-time
error. Can anyone help....here is a snippet of my code.
Set colDateOfDeath = New ADOX.Column
colDateOfDeath = "DATE_OF_DEATH"
colDateOfDeath.Type = adDate
tblPatientData.Columns.Append colDateOfDeath
tblPatientData.Columns("DATE_OF_DEATH").Properties
("Nullable") = True
Thanks in advance,
Mike
I am running into is that I have created a column of type
adDate. I would like to allow null entries for this
column. However when I try to use the properties method
to set the "Nullable" property I keep getting a run-time
error. Can anyone help....here is a snippet of my code.
Set colDateOfDeath = New ADOX.Column
colDateOfDeath = "DATE_OF_DEATH"
colDateOfDeath.Type = adDate
tblPatientData.Columns.Append colDateOfDeath
tblPatientData.Columns("DATE_OF_DEATH").Properties
("Nullable") = True
Thanks in advance,
Mike