To create a bindable Microsoft Access database:
The following fields and settings are for the Appointments table:
Field Name | Data Type | Field Size | Required | Indexed | Primary Key |
---|---|---|---|---|---|
AppointmentID | AutoNumber | Replication ID | Yes | Yes (No Duplicates) | X |
Subject | Text | 255 | Yes | No | -- |
Location | Text | 255 | No | No | -- |
Start | Date/Time | -- | No | No | -- |
End | Date/Time | -- | Yes | No | -- |
Body | Memo | -- | No | No | -- |
Properties | Memo | -- | No | No | -- |
The following fields and settings are for the Categories table:
Field Name | Data Type | Field Size | Required | Indexed | Primary Key |
---|---|---|---|---|---|
CategoryID | AutoNumber | Long Integer | Yes | Yes (No Duplicates) | X |
CategoryName | Text | 255 | Yes | Yes (No Duplicates) | -- |
The following fields and settings are for the Contacts table:
Field Name | Data Type | Field Size | Required | Indexed | Primary Key |
---|---|---|---|---|---|
ContactID | AutoNumber | Long Integer | Yes | Yes (No Duplicates) | X |
Name | Text | 255 | Yes | Yes (No Duplicates) | -- |
The following fields and settings are for the Resources table:
Field Name | Data Type | Field Size | Required | Indexed | Primary Key |
---|---|---|---|---|---|
ResourceID | AutoNumber | Long Integer | Yes | Yes (No Duplicates) | X |
ResourceName | Text | 255 | Yes | Yes (No Duplicates) | -- |